Skip to content

Commit

Permalink
fix output name
Browse files Browse the repository at this point in the history
  • Loading branch information
goliaro committed Nov 4, 2023
1 parent a09186a commit 06f375b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/inference/python_test_configs/generate_configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
continue

_, after_slash = big_model.rsplit("/", maxsplit=1)
filename = "spec_infer-" + "python-" + after_slash + ("-full_prec-" if full_precision else "-half_prec-") + f"{tp}_tp_{pp}_pp"
filename = "spec_infer-" + "python-" + after_slash.lower() + ("-full_prec-" if full_precision else "-half_prec-") + f"{tp}_tp_{pp}_pp"
test_configs_file = "./" + filename + ".json"
output_file = os.path.join(output_folder, filename+".txt")

Expand Down

0 comments on commit 06f375b

Please sign in to comment.