Skip to content

Commit 2c3b5f3

Browse files
Remove local walltime shown as local summary in BenchCloud mode
The value shows the local wall time that has elapsed while waiting for and executing the runs, but it could be confusing, is not valuable, and it is not reproducible. So better remove it.
1 parent 2c988f7 commit 2c3b5f3

1 file changed

Lines changed: 1 addition & 8 deletions

File tree

contrib/vcloud/benchmarkclient_executor.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -360,11 +360,6 @@ def handleCloudResults(benchmark, output_handler, start_time, end_time):
360360
# Write worker host informations in xml
361361
parseAndSetCloudWorkerHostInformation(outputDir, output_handler, benchmark)
362362

363-
if start_time and end_time:
364-
usedWallTime = (end_time - start_time).total_seconds()
365-
else:
366-
usedWallTime = None
367-
368363
# write results in runs and handle output after all runs are done
369364
executedAllRuns = True
370365
runsProducedErrorOutput = False
@@ -415,9 +410,7 @@ def handleCloudResults(benchmark, output_handler, start_time, end_time):
415410
):
416411
shutil.move(vcloudFilesDirectory, benchexecFilesDirectory)
417412

418-
output_handler.output_after_run_set(
419-
runSet, walltime=usedWallTime, end_time=end_time
420-
)
413+
output_handler.output_after_run_set(runSet, end_time=end_time)
421414

422415
output_handler.output_after_benchmark(STOPPED_BY_INTERRUPT)
423416

0 commit comments

Comments
 (0)