Skip to content

Commit bfe34a3

Browse files
committed
Addressing review comments.
1 parent 8deb216 commit bfe34a3

File tree

9 files changed

+75
-74
lines changed

9 files changed

+75
-74
lines changed

.github/workflows/benchmarks.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ jobs:
3838
npm ci
3939
npm run build
4040
echo 'Running o1js benchmarks.'
41-
node --enable-source-maps --stack-trace-limit=1000 src/build/run.js benchmark/runners/with-cloud-history.ts --bundle >>benchmarks.log 2>&1
41+
node --enable-source-maps --stack-trace-limit=1000 src/build/run.js benchmark/runners/init.ts --bundle >>benchmarks.log 2>&1
42+
node --enable-source-maps --stack-trace-limit=1000 src/build/run.js benchmark/runners/simple.ts --bundle >>benchmarks.log 2>&1
4243
cat benchmarks.log >> $GITHUB_STEP_SUMMARY
4344
shell: bash

benchmark/benchmarks/ecdsa.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ import {
1111
} from '../../src/examples/crypto/ecdsa/ecdsa.js';
1212
import { benchmark } from '../benchmark.js';
1313

14-
export { EcdsaBenchmark };
14+
export { EcdsaBenchmarks };
1515

1616
let privateKey = Secp256k1.Scalar.random();
1717
let publicKey = Secp256k1.generator.scale(privateKey);
1818
let message = Bytes32.fromString("what's up");
1919
let signature = Ecdsa.sign(message.toBytes(), privateKey.toBigInt());
2020

21-
const EcdsaBenchmark = benchmark(
21+
const EcdsaBenchmarks = benchmark(
2222
'ecdsa',
2323
async (tic, toc) => {
2424
tic('build constraint system');

benchmark/benchmarks/init.ts

-22
This file was deleted.

benchmark/runners/init.ts

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
/**
2+
* Specific runner for o1js initialization benchmarks to get "clean" metrics
3+
*
4+
* Run with
5+
* ```
6+
* ./run benchmark/runners/init.ts --bundle
7+
* ```
8+
*/
9+
10+
import { benchmark } from '../benchmark.js';
11+
import { processAndLogBenchmarkResults } from '../utils/result-utils.js';
12+
13+
const InitBenchmarks = benchmark(
14+
'init',
15+
async (tic, toc) => {
16+
tic('o1js import');
17+
const { initializeBindings } = await import('o1js');
18+
toc();
19+
20+
tic('bindings initialization');
21+
await initializeBindings();
22+
toc();
23+
},
24+
// Run once with no warmups to get the worst-case scenario metrics
25+
{ numberOfWarmups: 0, numberOfRuns: 1 }
26+
);
27+
28+
// Run the initialization benchmarks and collect results
29+
const results = [...(await InitBenchmarks.run())];
30+
31+
// Process and log results
32+
await processAndLogBenchmarkResults(results);

benchmark/runners/simple.ts

+7-14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/**
2-
* Simple benchmarks runner
3-
* Exercises benchmarks and logs the results
2+
* Simple benchmarks runner with historical data preservation in cloud storage (if configured)
43
*
54
* Run with
65
* ```
@@ -9,20 +8,14 @@
98
*/
109

1110
import { initializeBindings } from 'o1js';
12-
import { logResult } from '../benchmark.js';
13-
import { EcdsaBenchmark } from '../benchmarks/ecdsa.js';
14-
import { InitBenchmark } from '../benchmarks/init.js';
11+
import { EcdsaBenchmarks } from '../benchmarks/ecdsa.js';
12+
import { processAndLogBenchmarkResults } from '../utils/result-utils.js';
1513

1614
const results = [];
17-
18-
// Run the initialization benchmark
19-
results.push(...(await InitBenchmark.run()));
20-
// Run all other benchmarks
2115
await initializeBindings();
22-
results.push(...(await EcdsaBenchmark.run()));
16+
17+
// Run benchmarks and collect results
18+
results.push(...(await EcdsaBenchmarks.run()));
2319

2420
// Process and log results
25-
for (const result of results) {
26-
logResult(result);
27-
console.log('\n');
28-
}
21+
await processAndLogBenchmarkResults(results);

benchmark/runners/with-cloud-history.ts

-33
This file was deleted.

benchmark/utils/influxdb-utils.ts

+10-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export function writeResultToInfluxDb(result: BenchmarkResult): void {
5656
influxDbWriteClient.close();
5757
}
5858
} else {
59-
console.info('Skipping writing to InfluxDB: client is not configured.');
59+
debugLog('Skipping writing to InfluxDB: client is not configured.');
6060
}
6161
}
6262

@@ -66,6 +66,7 @@ export function readPreviousResultFromInfluxDb(
6666
return new Promise((resolve) => {
6767
const { org, bucket } = INFLUXDB_CLIENT_OPTIONS;
6868
if (!influxDbClient || !org || !bucket) {
69+
debugLog('Skipping querying InfluxDB: client is not configured.');
6970
resolve(undefined);
7071
return;
7172
}
@@ -130,3 +131,11 @@ export function readPreviousResultFromInfluxDb(
130131
}
131132
});
132133
}
134+
135+
function debugLog(message: string): void {
136+
// We can also use https://www.npmjs.com/package/debug
137+
// should we need more configuration options over the debug logging in the future
138+
if (process.env.DEBUG) {
139+
console.log(message);
140+
}
141+
}

benchmark/utils/result-utils.ts

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/**
2+
* Benchmark results processing utils
3+
*/
4+
5+
import { BenchmarkResult, logResult } from '../benchmark.js';
6+
import {
7+
readPreviousResultFromInfluxDb,
8+
writeResultToInfluxDb,
9+
} from './influxdb-utils.js';
10+
11+
export async function processAndLogBenchmarkResults(
12+
results: BenchmarkResult[]
13+
): Promise<void> {
14+
for (const result of results) {
15+
const previousResult = await readPreviousResultFromInfluxDb(result);
16+
logResult(result, previousResult);
17+
writeResultToInfluxDb(result);
18+
console.log('\n');
19+
}
20+
}

run-ci-benchmarks.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ echo ""
55
echo "Running o1js benchmarks."
66
echo ""
77

8-
./run benchmark/runners/with-cloud-history.ts --bundle >>benchmarks.log 2>&1
8+
./run benchmark/runners/init.ts --bundle >>benchmarks.log 2>&1
9+
./run benchmark/runners/simple.ts --bundle >>benchmarks.log 2>&1

0 commit comments

Comments
 (0)