chore(ci): reduce bench loops for WASM compressed server key

- excessive loops seemed to trigger a crash likely due to some memory
exhaustion/fragmentation
This commit is contained in:
Arthur Meyre
2024-08-13 17:49:19 +02:00
parent 92be95c6b8
commit 8f10f8f8db

View File

@@ -509,7 +509,7 @@ async function compactPublicKeyBench256BitSmall() {
}
async function compressedServerKeyBenchConfig(config) {
const bench_loops = 35;
const bench_loops = 5;
let bench_results = {};
console.log("Begin benchmarks"); // DEBUG