@@ -101,7 +101,7 @@ globalThis.skipFunMain = true;
101
101
102
102
// Prevent this from being detected as a shell environment, so that we use the
103
103
// same code paths as in the browser.
104
- // See `compose-benchmarks-benchmarks-wasm-js .uninstantiated.mjs`.
104
+ // See `compose-benchmarks-benchmarks.uninstantiated.mjs`.
105
105
delete globalThis . d8 ;
106
106
delete globalThis . inIon ;
107
107
delete globalThis . jscOptions ;
@@ -145,7 +145,7 @@ class Benchmark {
145
145
146
146
preload = {
147
147
'skiko.wasm' : Module . wasmSkikoBinary ,
148
- './compose-benchmarks-benchmarks-wasm-js .wasm' : Module . wasmBinary ,
148
+ './compose-benchmarks-benchmarks.wasm' : Module . wasmBinary ,
149
149
'./composeResources/compose_benchmarks.benchmarks.generated.resources/drawable/compose-multiplatform.png' : Module . inputImageCompose ,
150
150
'./composeResources/compose_benchmarks.benchmarks.generated.resources/drawable/example1_cat.jpg' : Module . inputImageCat ,
151
151
'./composeResources/compose_benchmarks.benchmarks.generated.resources/files/example1_compose-community-primary.png' : Module . inputImageComposeCommunity ,
@@ -154,10 +154,10 @@ class Benchmark {
154
154
} ;
155
155
156
156
// We patched `skiko.mjs` to not immediately instantiate the `skiko.wasm`
157
- // module, so that we can move the dynamic JS import here and measure
157
+ // module, so that we can move the dynamic JS import here but measure
158
158
// WebAssembly compilation and instantiation as part of the first iteration.
159
159
this . skikoInstantiate = ( await dynamicJSImport ( 'Kotlin-compose/build/skiko.mjs' ) ) . default ;
160
- this . mainInstantiate = ( await dynamicJSImport ( 'Kotlin-compose/build/compose-benchmarks-benchmarks-wasm-js .uninstantiated.mjs' ) ) . instantiate ;
160
+ this . mainInstantiate = ( await dynamicJSImport ( 'Kotlin-compose/build/compose-benchmarks-benchmarks.uninstantiated.mjs' ) ) . instantiate ;
161
161
}
162
162
163
163
async runIteration ( ) {
0 commit comments