Skip to content

Commit

Permalink
Correct wrong order of arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
wozna committed Mar 14, 2022
1 parent 297d270 commit 8efdce8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/paddle/fluid/contrib/slim/tests/save_quant_model.py
Expand Up @@ -151,5 +151,5 @@ def transform_and_save_int8_model(original_path,
transform_and_save_int8_model(
test_args.quant_model_path, test_args.int8_model_save_path,
test_args.ops_to_quantize, test_args.op_ids_to_skip, test_args.debug,
test_args.save_model_filename, test_args.save_params_filename,
test_args.quant_model_filename, test_args.quant_params_filename)
test_args.quant_model_filename, test_args.quant_params_filename,
test_args.save_model_filename, test_args.save_params_filename)

1 comment on commit 8efdce8

@paddle-bot-old
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Congratulation! Your pull request passed all required CI. You could ask reviewer(s) to approve and merge. 🎉

Please sign in to comment.