Skip to content
Snippets Groups Projects
Commit 698806b5 authored by Hashim Sharif's avatar Hashim Sharif
Browse files

Fixing path to new HPVM binaries with hpvm_* prefix

parent 6c6fe1eb
No related branches found
No related tags found
No related merge requests found
...@@ -14,7 +14,7 @@ benchmarks_srcdir = Path(__file__).parent / "../hpvm-c/benchmarks" ...@@ -14,7 +14,7 @@ benchmarks_srcdir = Path(__file__).parent / "../hpvm-c/benchmarks"
# So we know where the benchmark binaries are due to source directory structure, # So we know where the benchmark binaries are due to source directory structure,
# and this is not hardcoding. # and this is not hardcoding.
dnn = argv[1] dnn = argv[1]
bench_bin_file = benchmarks_bindir / dnn bench_bin_file = benchmarks_bindir / f"hpvm_{dnn}"
config_file = benchmarks_srcdir / dnn / "data/tuner_confs.txt" config_file = benchmarks_srcdir / dnn / "data/tuner_confs.txt"
out_config_file = f"./{dnn}.txt" out_config_file = f"./{dnn}.txt"
profile_configs(bench_bin_file, config_file, out_config_file) profile_configs(bench_bin_file, config_file, out_config_file)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment