We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d89142 commit 971788bCopy full SHA for 971788b
TS/src/BenchmarkRunner.lf
@@ -29,6 +29,8 @@ reactor BenchmarkRunner(num_iterations:number(12)) {
29
measuredTimes.length = num_iterations;
30
actions.nextIteration.schedule(0, true);
31
console.log("Benchmark will run " + num_iterations + " times \n");
32
+ console.log("System information:")
33
+ console.log(`Platform: ${process.platform} \n`)
34
=}
35
36
@@ -77,10 +79,6 @@ reactor BenchmarkRunner(num_iterations:number(12)) {
77
79
return (execTimes[middle-1] + execTimes[middle]) / 2;
78
80
}
81
- function printSystemInfo() {
- console.log("System information:")
82
- console.log(`Platform: ${process.platform)}`)
83
- }
84
85
86
0 commit comments