Skip to content

Commit ed63ede

Browse files
authored
Merge pull request #82606 from valeriyvan/Benchmark_Driver-format
Fix bug Benchmark_Driver writing benchmark log in unsupported format
2 parents 4a6badd + 8d83ddd commit ed63ede

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmark/scripts/Benchmark_Driver

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ class BenchmarkDriver(object):
337337
driver = BenchmarkDriver(args)
338338
results = driver.run_and_log(csv_console=(args.output_dir is None))
339339
if args.output_dir:
340-
driver.log_results([r.json for r in results])
340+
driver.log_results([r.json() for r in results])
341341
return 0
342342

343343

0 commit comments

Comments
 (0)