LICENSE
README.md
pyproject.toml
setup.cfg
setup.py
third-party-programs.txt
neural_compressor/common/__init__.py
neural_compressor/common/base_config.py
neural_compressor/common/base_tuning.py
neural_compressor/common/tuning_param.py
neural_compressor/common/utils/__init__.py
neural_compressor/common/utils/constants.py
neural_compressor/common/utils/logger.py
neural_compressor/common/utils/save_load.py
neural_compressor/common/utils/utility.py
neural_compressor/tensorflow/__init__.py
neural_compressor/tensorflow/algorithms/__init__.py
neural_compressor/tensorflow/algorithms/smoother/__init__.py
neural_compressor/tensorflow/algorithms/smoother/calibration.py
neural_compressor/tensorflow/algorithms/smoother/core.py
neural_compressor/tensorflow/algorithms/smoother/scaler.py
neural_compressor/tensorflow/algorithms/static_quant/__init__.py
neural_compressor/tensorflow/algorithms/static_quant/keras.py
neural_compressor/tensorflow/algorithms/static_quant/keras.yaml
neural_compressor/tensorflow/algorithms/static_quant/tensorflow.py
neural_compressor/tensorflow/algorithms/static_quant/tensorflow.yaml
neural_compressor/tensorflow/keras/__init__.py
neural_compressor/tensorflow/keras/layers/__init__.py
neural_compressor/tensorflow/keras/layers/conv2d.py
neural_compressor/tensorflow/keras/layers/dense.py
neural_compressor/tensorflow/keras/layers/depthwise_conv2d.py
neural_compressor/tensorflow/keras/layers/layer_initializer.py
neural_compressor/tensorflow/keras/layers/pool2d.py
neural_compressor/tensorflow/keras/layers/quantizer.py
neural_compressor/tensorflow/keras/layers/separable_conv2d.py
neural_compressor/tensorflow/keras/quantization/__init__.py
neural_compressor/tensorflow/keras/quantization/config.py
neural_compressor/tensorflow/quantization/__init__.py
neural_compressor/tensorflow/quantization/algorithm_entry.py
neural_compressor/tensorflow/quantization/autotune.py
neural_compressor/tensorflow/quantization/config.py
neural_compressor/tensorflow/quantization/quantize.py
neural_compressor/tensorflow/quantization/utils/__init__.py
neural_compressor/tensorflow/quantization/utils/graph_converter.py
neural_compressor/tensorflow/quantization/utils/graph_converter_without_calib.py
neural_compressor/tensorflow/quantization/utils/graph_util.py
neural_compressor/tensorflow/quantization/utils/quantize_graph_common.py
neural_compressor/tensorflow/quantization/utils/utility.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/__init__.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/graph_base.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/bf16/__init__.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/bf16/bf16_convert.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/bf16/dequantize_cast_optimizer.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/__init__.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/convert_add_to_biasadd.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/convert_layout.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/convert_leakyrelu.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/convert_nan_to_random.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/convert_placeholder_to_const.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/dilated_contraction.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/dummy_biasadd.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/expanddims_optimizer.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/fetch_weight_from_reshape.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/fold_batch_norm.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/fold_constant.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/fuse_biasadd_add.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/fuse_column_wise_mul.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/fuse_conv_with_math.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/fuse_decomposed_bn.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/fuse_decomposed_in.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/fuse_gelu.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/fuse_layer_norm.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/fuse_pad_with_conv.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/fuse_pad_with_fp32_conv.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/fuse_reshape_transpose.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/graph_cse_optimizer.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/grappler_pass.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/insert_print_node.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/move_squeeze_after_relu.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/pre_optimize.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/remove_training_nodes.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/rename_batch_norm.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/split_shared_input.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/strip_equivalent_nodes.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/strip_unused_nodes.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/generic/switch_optimizer.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/int8/__init__.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/int8/freeze_fake_quant.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/int8/freeze_value.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/int8/freeze_value_without_calib.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/int8/fuse_conv_redundant_dequantize.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/int8/fuse_conv_requantize.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/int8/fuse_matmul_redundant_dequantize.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/int8/fuse_matmul_requantize.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/int8/meta_op_optimizer.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/int8/post_hostconst_converter.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/int8/post_quantized_op_cse.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/int8/rnn_convert.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/int8/scale_propagation.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/qdq/__init__.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/qdq/insert_qdq_pattern.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/qdq/merge_duplicated_qdq.py
neural_compressor/tensorflow/quantization/utils/graph_rewriter/qdq/share_qdq_y_pattern.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/__init__.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/quantize_graph_base.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/quantize_graph_bn.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/quantize_graph_concatv2.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/quantize_graph_conv.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/quantize_graph_for_intel_cpu.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/quantize_graph_matmul.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/quantize_graph_pooling.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/qat/__init__.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/qat/fake_quantize.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/qat/quantize_config.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/qat/quantize_helper.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/qat/quantize_wrapper.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/qat/quantize_layers/__init__.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/qat/quantize_layers/optimize_layer.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/qat/quantize_layers/quantize_layer_add.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/qat/quantize_layers/quantize_layer_base.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/qat/quantize_layers/quantize_layer_bn.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/qdq/__init__.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/qdq/fuse_qdq_bn.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/qdq/fuse_qdq_concatv2.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/qdq/fuse_qdq_conv.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/qdq/fuse_qdq_deconv.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/qdq/fuse_qdq_in.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/qdq/fuse_qdq_matmul.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/qdq/fuse_qdq_pooling.py
neural_compressor/tensorflow/quantization/utils/quantize_graph/qdq/optimize_qdq.py
neural_compressor/tensorflow/quantization/utils/transform_graph/__init__.py
neural_compressor/tensorflow/quantization/utils/transform_graph/bias_correction.py
neural_compressor/tensorflow/quantization/utils/transform_graph/graph_transform_base.py
neural_compressor/tensorflow/quantization/utils/transform_graph/insert_logging.py
neural_compressor/tensorflow/quantization/utils/transform_graph/rerange_quantized_concat.py
neural_compressor/tensorflow/utils/__init__.py
neural_compressor/tensorflow/utils/constants.py
neural_compressor/tensorflow/utils/data.py
neural_compressor/tensorflow/utils/model.py
neural_compressor/tensorflow/utils/model_wrappers.py
neural_compressor/tensorflow/utils/nets_factory.py
neural_compressor/tensorflow/utils/utility.py
neural_compressor_3x_tf.egg-info/PKG-INFO
neural_compressor_3x_tf.egg-info/SOURCES.txt
neural_compressor_3x_tf.egg-info/dependency_links.txt
neural_compressor_3x_tf.egg-info/requires.txt
neural_compressor_3x_tf.egg-info/top_level.txt