forked from openvinotoolkit/nncf
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[New API] OpenVINOQuantizer #34
Open
daniil-lyakhov
wants to merge
19
commits into
develop
Choose a base branch
from
dl/fx/openvino_quantizer
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Changes Redundant code is removed from `tests/cross_fw/test_templates/test_quantizer_config.py` ### Reason for changes To decrease amount of code in tests
### Changes - Added BF16/FP16 models to PTQ tests scope. ### Reason for changes - Extend e2e with different precisions. ### Related tickets - 147481 ### Tests - manual post_training_quantization/562/ - passed
### Changes Removed TensorBackendType. ### Reason for changes Got TensorBackendType and TensorBackend with the same definition
Workaround for issue huggingface/optimum-intel#993
daniil-lyakhov
force-pushed
the
dl/fx/openvino_quantizer
branch
2 times, most recently
from
December 2, 2024 13:24
19b6af8
to
55b24fa
Compare
Reverts openvinotoolkit#2922 ### Related tickets 158536
daniil-lyakhov
force-pushed
the
dl/fx/openvino_quantizer
branch
2 times, most recently
from
December 2, 2024 16:55
c58f4e9
to
500e549
Compare
### Changes Removed requirements.txt ### Reason for changes - requirements.txt that install package is not expected as default behavior to install module in editable mode. - editable mode is deprecated - requirements.txt not actual after pyproject.toml
### Changes Update readme.md and installation.md
### Changes - Add pattern based on file extension to gitignore for examples - Use pathlib style instead os.path - Fix issue with creating ../nncf/~/.cache/datasets directory - Replace tqdm to nncf.common.logging.track_progress - Remove unused function arguments and if conditions - Clean logs, disable progress bar, remove log of validataion - Pass list of command arguments to subprocess instead of string - Remove nncf dependencies from tests/cross_fw/examples - Add `--reuse-venv` to use venv from example directory - Add progress bar to collect_values_for_each_item_using_prepared_model ### Tests https://github.com/openvinotoolkit/nncf/actions/runs/11900403097 nightly/job/test_examples/618 nightly/job/windows/job/test-examples/278/
…notoolkit#3027) ### Changes * Bias fusing is removed from default transformations * `constant_folding` is updated to remove inplace operations without users * `extract_model` is updated to support original model output as a subgraph output ### Reason for changes To make it possible to apply quantization the same way it done by X86Quantizer ### Related tickets openvinotoolkit#2766 110985 ### Tests * All int8 references are updated and checked manually * `test_constant_folding` and `test_constant_folding_with_constraints` are updated with a constant subgraph which contains an inplace op (`relu_`) * `test_model_extraction_with_original_output` is introduced * conformance test post_training_quantization/557 have finished successfully
daniil-lyakhov
force-pushed
the
dl/fx/openvino_quantizer
branch
from
December 5, 2024 10:44
500e549
to
873c9ce
Compare
github-actions
bot
added
documentation
Improvements or additions to documentation
dependencies
NNCF TF
NNCF ONNX
NNCF OpenVINO
labels
Dec 5, 2024
daniil-lyakhov
force-pushed
the
dl/fx/openvino_quantizer
branch
from
December 5, 2024 10:50
873c9ce
to
ed1c630
Compare
daniil-lyakhov
force-pushed
the
dl/fx/openvino_quantizer
branch
from
December 5, 2024 15:41
ed1c630
to
3440d82
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
dependencies
documentation
Improvements or additions to documentation
experimental
NNCF Common
NNCF ONNX
NNCF OpenVINO
NNCF PT
NNCF PTQ
NNCF TF
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Changes
Reason for changes
Related tickets
Tests