Skip to content

Commit

Permalink
fix the error of qat unit test (#33574)
Browse files Browse the repository at this point in the history
  • Loading branch information
juncaipeng authored Jun 17, 2021
1 parent 918aeb7 commit 3af1629
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 16 deletions.
16 changes: 3 additions & 13 deletions python/paddle/fluid/contrib/slim/tests/test_imperative_qat.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ def tearDownClass(cls):
print("Failed to delete {} due to {}".format(cls.root_path, str(e)))

def set_vars(self):
self.weight_quantize_type = None
self.activation_quantize_type = None
self.weight_quantize_type = 'abs_max'
self.activation_quantize_type = 'moving_average_abs_max'
print('weight_quantize_type', self.weight_quantize_type)

def run_qat_save(self):
def test_qat(self):
self.set_vars()

imperative_qat = ImperativeQuantAware(
Expand Down Expand Up @@ -200,15 +200,5 @@ def run_qat_save(self):
msg='Failed to save the inference quantized model.')


class TestImperativeQatAbsMax(TestImperativeQat):
def set_vars(self):
self.weight_quantize_type = 'abs_max'
self.activation_quantize_type = 'moving_average_abs_max'
print('weight_quantize_type', self.weight_quantize_type)

def test_qat(self):
self.run_qat_save()


if __name__ == '__main__':
unittest.main()
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@ def set_vars(self):
self.activation_quantize_type = 'moving_average_abs_max'
print('weight_quantize_type', self.weight_quantize_type)

def test_qat(self):
self.run_qat_save()


if __name__ == '__main__':
unittest.main()

0 comments on commit 3af1629

Please sign in to comment.