Skip to content

Commit 971788b

Browse files
Wonseo-Ccmnrd
authored andcommitted
print platform
1 parent 7d89142 commit 971788b

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

TS/src/BenchmarkRunner.lf

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ reactor BenchmarkRunner(num_iterations:number(12)) {
2929
measuredTimes.length = num_iterations;
3030
actions.nextIteration.schedule(0, true);
3131
console.log("Benchmark will run " + num_iterations + " times \n");
32+
console.log("System information:")
33+
console.log(`Platform: ${process.platform} \n`)
3234
=}
3335

3436

@@ -77,10 +79,6 @@ reactor BenchmarkRunner(num_iterations:number(12)) {
7779
return (execTimes[middle-1] + execTimes[middle]) / 2;
7880
}
7981
}
80-
function printSystemInfo() {
81-
console.log("System information:")
82-
console.log(`Platform: ${process.platform)}`)
83-
}
8482
=}
8583

8684
}

0 commit comments

Comments
 (0)