Skip to content

Commit

Permalink
fix issue with setting constant qc in base pytorch tests
Browse files Browse the repository at this point in the history
  • Loading branch information
reuvenp committed Sep 25, 2024
1 parent 2c18b66 commit 2c21bb2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/pytorch_tests/model_tests/base_pytorch_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,7 @@ def get_tpc(self):
}

def get_core_configs(self):
base_quant_config = mct.core.QuantizationConfig(mct.core.QuantizationErrorMethod.NOCLIPPING,
mct.core.QuantizationErrorMethod.NOCLIPPING, False, True)
base_core_config = mct.core.CoreConfig(quantization_config=base_quant_config,
base_core_config = mct.core.CoreConfig(quantization_config=self.get_quantization_config(),
mixed_precision_config=self.get_mixed_precision_config(),
debug_config=self.get_debug_config())
return {
Expand Down

0 comments on commit 2c21bb2

Please sign in to comment.