Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Kathryn-cat committed Jun 17, 2022
1 parent e669c57 commit 94ad283
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def measure_candidates(database, builder, runner):
)
else:
run_fail_indices.append(i)
fail_indices_name = workload_name[:-13] + "failed_indices.txt"
fail_indices_name = workload_name.replace("_workload.json", "_failed_indices.txt")
with open(
os.path.join(args.result_cache_dir, model_name, fail_indices_name), "w", encoding="utf8"
) as file:
Expand All @@ -163,7 +163,7 @@ def main():
session_timeout_sec=args.runner_timeout_sec,
),
evaluator_config=ms.runner.EvaluatorConfig(
number=1,
number=3,
repeat=1,
min_repeat_ms=args.min_repeat_ms,
enable_cpu_cache_flush=args.cpu_flush,
Expand Down

0 comments on commit 94ad283

Please sign in to comment.