Skip to content

Commit 9dfdf16

Browse files
authored
feat: add cli flag to trigger gc (#20)
* Add a CLI flag to trigger GC * Bump the rc version
1 parent 0c785bb commit 9dfdf16

File tree

5 files changed

+18
-2
lines changed

5 files changed

+18
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chainsafe/benchmark",
3-
"version": "1.1.0-rc.4",
3+
"version": "1.1.0-rc.5",
44
"repository": "[email protected]:chainsafe/benchmark.git",
55
"author": "ChainSafe Systems",
66
"license": "MIT",

src/benchmark/reporter.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export class BenchmarkReporter {
7676

7777
const ratio = result.averageNs / prevResult.averageNs;
7878
if (ratio > threshold) {
79-
const fmt = this.indent() + color("fail", " " + symbols.err) + " " + resultRow;
79+
const fmt = this.indent() + color("fail", " " + symbols.bang) + " " + resultRow;
8080
consoleLog(fmt);
8181
this.failed++;
8282
return;

src/benchmark/runner.ts

+8
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import {BenchmarkReporter} from "./reporter.js";
1313
import {store} from "./globalState.js";
1414

1515
export class BenchmarkRunner implements VitestRunner {
16+
readonly triggerGC: boolean;
1617
readonly config: VitestRunnerConfig;
1718
readonly reporter: BenchmarkReporter;
1819
readonly prevBench: Benchmark | null;
@@ -29,6 +30,7 @@ export class BenchmarkRunner implements VitestRunner {
2930
setupFiles: benchmarkOpts.setupFiles ? benchmarkOpts.setupFiles.map((s) => path.resolve(s)) : [],
3031
retry: 0,
3132
};
33+
this.triggerGC = benchmarkOpts.triggerGC ?? false;
3234
this.prevBench = prevBench;
3335
this.benchmarkOpts = benchmarkOpts;
3436
this.reporter = new BenchmarkReporter({prevBench, benchmarkOpts});
@@ -50,6 +52,12 @@ export class BenchmarkRunner implements VitestRunner {
5052
onAfterRunTask(task: Task): void {
5153
this.reporter.onTestFinished(task);
5254
store.removeOptions(task);
55+
56+
// To help maintain consistent memory usage patterns
57+
// we trigger garbage collection manually
58+
if (this.triggerGC && global.gc) {
59+
global.gc();
60+
}
5361
}
5462

5563
onAfterRunFiles(files: File[]): void {

src/cli/options.ts

+6
Original file line numberDiff line numberDiff line change
@@ -191,4 +191,10 @@ export const benchmarkOptions: ICliCommandOptions<CLIBenchmarkOptions> = {
191191
default: [],
192192
group: benchmarkGroup,
193193
},
194+
triggerGC: {
195+
type: "boolean",
196+
description: "Trigger GC (if available) after every benchmark",
197+
default: false,
198+
group: benchmarkGroup,
199+
},
194200
};

src/types.ts

+2
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ export type BenchmarkOpts = {
6363
skip?: boolean;
6464
/** Setup files to load before the test files */
6565
setupFiles?: string[];
66+
/** Trigger GC cleanup every test to have consistent memory usage */
67+
triggerGC?: boolean;
6668
};
6769

6870
// Create partial only for specific keys

0 commit comments

Comments
 (0)