Skip to content

Commit

Permalink
Paramter parsing bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
janekl committed Jun 6, 2024
1 parent be70812 commit b0a4dd3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/export/test_nemo_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -515,8 +515,7 @@ def run_inference_tests(args):
else:
args.run_accuracy = False

if args.use_custom_all_reduce == "True":
args.use_custom_all_reduce = True
args.use_custom_all_reduce = args.use_custom_all_reduce == "True"

if args.run_accuracy:
if args.test_data_path is None:
Expand Down

0 comments on commit b0a4dd3

Please sign in to comment.