File tree 5 files changed +18
-2
lines changed
5 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @chainsafe/benchmark" ,
3
- "version" : " 1.1.0-rc.4 " ,
3
+ "version" : " 1.1.0-rc.5 " ,
4
4
"repository" :
" [email protected] :chainsafe/benchmark.git" ,
5
5
"author" : " ChainSafe Systems" ,
6
6
"license" : " MIT" ,
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ export class BenchmarkReporter {
76
76
77
77
const ratio = result . averageNs / prevResult . averageNs ;
78
78
if ( ratio > threshold ) {
79
- const fmt = this . indent ( ) + color ( "fail" , " " + symbols . err ) + " " + resultRow ;
79
+ const fmt = this . indent ( ) + color ( "fail" , " " + symbols . bang ) + " " + resultRow ;
80
80
consoleLog ( fmt ) ;
81
81
this . failed ++ ;
82
82
return ;
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ import {BenchmarkReporter} from "./reporter.js";
13
13
import { store } from "./globalState.js" ;
14
14
15
15
export class BenchmarkRunner implements VitestRunner {
16
+ readonly triggerGC : boolean ;
16
17
readonly config : VitestRunnerConfig ;
17
18
readonly reporter : BenchmarkReporter ;
18
19
readonly prevBench : Benchmark | null ;
@@ -29,6 +30,7 @@ export class BenchmarkRunner implements VitestRunner {
29
30
setupFiles : benchmarkOpts . setupFiles ? benchmarkOpts . setupFiles . map ( ( s ) => path . resolve ( s ) ) : [ ] ,
30
31
retry : 0 ,
31
32
} ;
33
+ this . triggerGC = benchmarkOpts . triggerGC ?? false ;
32
34
this . prevBench = prevBench ;
33
35
this . benchmarkOpts = benchmarkOpts ;
34
36
this . reporter = new BenchmarkReporter ( { prevBench, benchmarkOpts} ) ;
@@ -50,6 +52,12 @@ export class BenchmarkRunner implements VitestRunner {
50
52
onAfterRunTask ( task : Task ) : void {
51
53
this . reporter . onTestFinished ( task ) ;
52
54
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
+ }
53
61
}
54
62
55
63
onAfterRunFiles ( files : File [ ] ) : void {
Original file line number Diff line number Diff line change @@ -191,4 +191,10 @@ export const benchmarkOptions: ICliCommandOptions<CLIBenchmarkOptions> = {
191
191
default : [ ] ,
192
192
group : benchmarkGroup ,
193
193
} ,
194
+ triggerGC : {
195
+ type : "boolean" ,
196
+ description : "Trigger GC (if available) after every benchmark" ,
197
+ default : false ,
198
+ group : benchmarkGroup ,
199
+ } ,
194
200
} ;
Original file line number Diff line number Diff line change @@ -63,6 +63,8 @@ export type BenchmarkOpts = {
63
63
skip ?: boolean ;
64
64
/** Setup files to load before the test files */
65
65
setupFiles ?: string [ ] ;
66
+ /** Trigger GC cleanup every test to have consistent memory usage */
67
+ triggerGC ?: boolean ;
66
68
} ;
67
69
68
70
// Create partial only for specific keys
You can’t perform that action at this time.
0 commit comments