File tree 9 files changed +75
-74
lines changed
9 files changed +75
-74
lines changed Original file line number Diff line number Diff line change 38
38
npm ci
39
39
npm run build
40
40
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
42
43
cat benchmarks.log >> $GITHUB_STEP_SUMMARY
43
44
shell : bash
Original file line number Diff line number Diff line change @@ -11,14 +11,14 @@ import {
11
11
} from '../../src/examples/crypto/ecdsa/ecdsa.js' ;
12
12
import { benchmark } from '../benchmark.js' ;
13
13
14
- export { EcdsaBenchmark } ;
14
+ export { EcdsaBenchmarks } ;
15
15
16
16
let privateKey = Secp256k1 . Scalar . random ( ) ;
17
17
let publicKey = Secp256k1 . generator . scale ( privateKey ) ;
18
18
let message = Bytes32 . fromString ( "what's up" ) ;
19
19
let signature = Ecdsa . sign ( message . toBytes ( ) , privateKey . toBigInt ( ) ) ;
20
20
21
- const EcdsaBenchmark = benchmark (
21
+ const EcdsaBenchmarks = benchmark (
22
22
'ecdsa' ,
23
23
async ( tic , toc ) => {
24
24
tic ( 'build constraint system' ) ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
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 ) ;
Original file line number Diff line number Diff line change 1
1
/**
2
- * Simple benchmarks runner
3
- * Exercises benchmarks and logs the results
2
+ * Simple benchmarks runner with historical data preservation in cloud storage (if configured)
4
3
*
5
4
* Run with
6
5
* ```
9
8
*/
10
9
11
10
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' ;
15
13
16
14
const results = [ ] ;
17
-
18
- // Run the initialization benchmark
19
- results . push ( ...( await InitBenchmark . run ( ) ) ) ;
20
- // Run all other benchmarks
21
15
await initializeBindings ( ) ;
22
- results . push ( ...( await EcdsaBenchmark . run ( ) ) ) ;
16
+
17
+ // Run benchmarks and collect results
18
+ results . push ( ...( await EcdsaBenchmarks . run ( ) ) ) ;
23
19
24
20
// Process and log results
25
- for ( const result of results ) {
26
- logResult ( result ) ;
27
- console . log ( '\n' ) ;
28
- }
21
+ await processAndLogBenchmarkResults ( results ) ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ export function writeResultToInfluxDb(result: BenchmarkResult): void {
56
56
influxDbWriteClient . close ( ) ;
57
57
}
58
58
} else {
59
- console . info ( 'Skipping writing to InfluxDB: client is not configured.' ) ;
59
+ debugLog ( 'Skipping writing to InfluxDB: client is not configured.' ) ;
60
60
}
61
61
}
62
62
@@ -66,6 +66,7 @@ export function readPreviousResultFromInfluxDb(
66
66
return new Promise ( ( resolve ) => {
67
67
const { org, bucket } = INFLUXDB_CLIENT_OPTIONS ;
68
68
if ( ! influxDbClient || ! org || ! bucket ) {
69
+ debugLog ( 'Skipping querying InfluxDB: client is not configured.' ) ;
69
70
resolve ( undefined ) ;
70
71
return ;
71
72
}
@@ -130,3 +131,11 @@ export function readPreviousResultFromInfluxDb(
130
131
}
131
132
} ) ;
132
133
}
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
+ }
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change 5
5
echo " Running o1js benchmarks."
6
6
echo " "
7
7
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
You can’t perform that action at this time.
0 commit comments