Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2480d64

Browse files
committedFeb 14, 2025·
Move files from nncf/common/quantization to nncf/quantization
1 parent 61f5886 commit 2480d64

File tree

115 files changed

+361
-372
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+361
-372
lines changed
 

‎nncf/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
Neural Network Compression Framework (NNCF) for enhanced OpenVINO™ inference.
1313
"""
1414

15+
from nncf.common.graph.graph import NNCFGraph as NNCFGraph
1516
from nncf.common.logging import nncf_logger as nncf_logger
1617
from nncf.common.logging.logger import disable_logging as disable_logging
1718
from nncf.common.logging.logger import set_log_level as set_log_level

‎nncf/common/hardware/config.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
import nncf
2121
from nncf.common.graph.operator_metatypes import OperatorMetatype
2222
from nncf.common.logging import nncf_logger
23-
from nncf.common.quantization.structs import QuantizationScheme as QuantizationMode
24-
from nncf.common.quantization.structs import QuantizerConfig
2523
from nncf.common.utils.helpers import product_dict
2624
from nncf.common.utils.os import safe_open
2725
from nncf.definitions import HW_CONFIG_RELATIVE_DIR
2826
from nncf.definitions import NNCF_PACKAGE_ROOT_DIR
27+
from nncf.quantization.structs import QuantizationScheme as QuantizationMode
28+
from nncf.quantization.structs import QuantizerConfig
2929

3030

3131
class HWConfigType(Enum):

0 commit comments

Comments
 (0)
Please sign in to comment.