Skip to content

Commit

Permalink
Rename the metric for incremental compile time, so that it's separate…
Browse files Browse the repository at this point in the history
… from the one for full compile time.
  • Loading branch information
poletti-marco committed Sep 10, 2018
1 parent 6e473ef commit e66c410
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extras/benchmark/run_benchmarks.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ def run_incremental_compile_benchmark(self):
start = timer()
self.run_make_build()
end = timer()
result = {'compile_time': end - start}
result = {'incremental_compile_time': end - start}
return result

def run_runtime_benchmark(self):
Expand Down

0 comments on commit e66c410

Please sign in to comment.