@@ -1693,23 +1693,23 @@ function dotnetPreloads(type)
1693
1693
dotnetUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/dotnet.js` ,
1694
1694
dotnetNativeUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/dotnet.native.js` ,
1695
1695
dotnetRuntimeUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/dotnet.runtime.js` ,
1696
- wasmBinaryUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/dotnet.native.wasm` ,
1696
+ wasmBinaryUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/dotnet.native.wasm.z ` ,
1697
1697
icuCustomUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/icudt_CJK.dat` ,
1698
- dllCollectionsConcurrentUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.Collections.Concurrent.wasm` ,
1699
- dllCollectionsUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.Collections.wasm` ,
1700
- dllComponentModelPrimitivesUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.ComponentModel.Primitives.wasm` ,
1701
- dllComponentModelTypeConverterUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.ComponentModel.TypeConverter.wasm` ,
1702
- dllDrawingPrimitivesUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.Drawing.Primitives.wasm` ,
1703
- dllDrawingUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.Drawing.wasm` ,
1704
- dllIOPipelinesUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.IO.Pipelines.wasm` ,
1705
- dllLinqUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.Linq.wasm` ,
1706
- dllMemoryUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.Memory.wasm` ,
1707
- dllObjectModelUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.ObjectModel.wasm` ,
1708
- dllPrivateCorelibUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.Private.CoreLib.wasm` ,
1709
- dllRuntimeInteropServicesJavaScriptUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.Runtime.InteropServices.JavaScript.wasm` ,
1710
- dllTextEncodingsWebUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.Text.Encodings.Web.wasm` ,
1711
- dllTextJsonUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.Text.Json.wasm` ,
1712
- dllAppUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/dotnet.wasm` ,
1698
+ dllCollectionsConcurrentUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.Collections.Concurrent.wasm.z ` ,
1699
+ dllCollectionsUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.Collections.wasm.z ` ,
1700
+ dllComponentModelPrimitivesUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.ComponentModel.Primitives.wasm.z ` ,
1701
+ dllComponentModelTypeConverterUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.ComponentModel.TypeConverter.wasm.z ` ,
1702
+ dllDrawingPrimitivesUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.Drawing.Primitives.wasm.z ` ,
1703
+ dllDrawingUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.Drawing.wasm.z ` ,
1704
+ dllIOPipelinesUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.IO.Pipelines.wasm.z ` ,
1705
+ dllLinqUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.Linq.wasm.z ` ,
1706
+ dllMemoryUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.Memory.wasm.z ` ,
1707
+ dllObjectModelUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.ObjectModel.wasm.z ` ,
1708
+ dllPrivateCorelibUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.Private.CoreLib.wasm.z ` ,
1709
+ dllRuntimeInteropServicesJavaScriptUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.Runtime.InteropServices.JavaScript.wasm.z ` ,
1710
+ dllTextEncodingsWebUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.Text.Encodings.Web.wasm.z ` ,
1711
+ dllTextJsonUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/System.Text.Json.wasm.z ` ,
1712
+ dllAppUrl : `./wasm/dotnet/build-${ type } /wwwroot/_framework/dotnet.wasm.z ` ,
1713
1713
}
1714
1714
}
1715
1715
@@ -2208,7 +2208,7 @@ let BENCHMARKS = [
2208
2208
"./wasm/HashSet/benchmark.js" ,
2209
2209
] ,
2210
2210
preload : {
2211
- wasmBinary : "./wasm/HashSet/build/HashSet.wasm" ,
2211
+ wasmBinary : "./wasm/HashSet/build/HashSet.wasm.z " ,
2212
2212
} ,
2213
2213
iterations : 50 ,
2214
2214
// No longer run by-default: We have more realistic Wasm workloads by
@@ -2222,7 +2222,7 @@ let BENCHMARKS = [
2222
2222
"./wasm/TSF/benchmark.js" ,
2223
2223
] ,
2224
2224
preload : {
2225
- wasmBinary : "./wasm/TSF/build/tsf.wasm" ,
2225
+ wasmBinary : "./wasm/TSF/build/tsf.wasm.z " ,
2226
2226
} ,
2227
2227
iterations : 50 ,
2228
2228
tags : [ "Default" , "Wasm" ] ,
@@ -2234,7 +2234,7 @@ let BENCHMARKS = [
2234
2234
"./wasm/quicksort/benchmark.js" ,
2235
2235
] ,
2236
2236
preload : {
2237
- wasmBinary : "./wasm/quicksort/build/quicksort.wasm" ,
2237
+ wasmBinary : "./wasm/quicksort/build/quicksort.wasm.z " ,
2238
2238
} ,
2239
2239
iterations : 50 ,
2240
2240
tags : [ "Default" , "Wasm" ] ,
@@ -2246,7 +2246,7 @@ let BENCHMARKS = [
2246
2246
"./wasm/gcc-loops/benchmark.js" ,
2247
2247
] ,
2248
2248
preload : {
2249
- wasmBinary : "./wasm/gcc-loops/build/gcc-loops.wasm" ,
2249
+ wasmBinary : "./wasm/gcc-loops/build/gcc-loops.wasm.z " ,
2250
2250
} ,
2251
2251
iterations : 50 ,
2252
2252
tags : [ "Default" , "Wasm" ] ,
@@ -2258,7 +2258,7 @@ let BENCHMARKS = [
2258
2258
"./wasm/richards/benchmark.js" ,
2259
2259
] ,
2260
2260
preload : {
2261
- wasmBinary : "./wasm/richards/build/richards.wasm" ,
2261
+ wasmBinary : "./wasm/richards/build/richards.wasm.z " ,
2262
2262
} ,
2263
2263
iterations : 50 ,
2264
2264
tags : [ "Default" , "Wasm" ] ,
@@ -2270,7 +2270,7 @@ let BENCHMARKS = [
2270
2270
"./sqlite3/build/jswasm/speedtest1.js" ,
2271
2271
] ,
2272
2272
preload : {
2273
- wasmBinary : "./sqlite3/build/jswasm/speedtest1.wasm" ,
2273
+ wasmBinary : "./sqlite3/build/jswasm/speedtest1.wasm.z " ,
2274
2274
} ,
2275
2275
iterations : 30 ,
2276
2276
worstCaseCount : 2 ,
@@ -2283,7 +2283,7 @@ let BENCHMARKS = [
2283
2283
] ,
2284
2284
preload : {
2285
2285
jsModule : "./Dart/build/flute.complex.dart2wasm.mjs" ,
2286
- wasmBinary : "./Dart/build/flute.complex.dart2wasm.wasm" ,
2286
+ wasmBinary : "./Dart/build/flute.complex.dart2wasm.wasm.z " ,
2287
2287
} ,
2288
2288
iterations : 15 ,
2289
2289
worstCaseCount : 2 ,
@@ -2301,7 +2301,7 @@ let BENCHMARKS = [
2301
2301
] ,
2302
2302
preload : {
2303
2303
jsModule : "./Dart/build/flute.todomvc.dart2wasm.mjs" ,
2304
- wasmBinary : "./Dart/build/flute.todomvc.dart2wasm.wasm" ,
2304
+ wasmBinary : "./Dart/build/flute.todomvc.dart2wasm.wasm.z " ,
2305
2305
} ,
2306
2306
iterations : 30 ,
2307
2307
worstCaseCount : 2 ,
@@ -2314,9 +2314,9 @@ let BENCHMARKS = [
2314
2314
] ,
2315
2315
preload : {
2316
2316
skikoJsModule : "./Kotlin-compose/build/skiko.mjs" ,
2317
- skikoWasmBinary : "./Kotlin-compose/build/skiko.wasm" ,
2317
+ skikoWasmBinary : "./Kotlin-compose/build/skiko.wasm.z " ,
2318
2318
composeJsModule : "./Kotlin-compose/build/compose-benchmarks-benchmarks.uninstantiated.mjs" ,
2319
- composeWasmBinary : "./Kotlin-compose/build/compose-benchmarks-benchmarks.wasm" ,
2319
+ composeWasmBinary : "./Kotlin-compose/build/compose-benchmarks-benchmarks.wasm.z " ,
2320
2320
inputImageCompose : "./Kotlin-compose/build/compose-multiplatform.png" ,
2321
2321
inputImageCat : "./Kotlin-compose/build/example1_cat.jpg" ,
2322
2322
inputImageComposeCommunity : "./Kotlin-compose/build/example1_compose-community-primary.png" ,
@@ -2341,7 +2341,7 @@ let BENCHMARKS = [
2341
2341
"./wasm/tfjs-benchmark.js" ,
2342
2342
] ,
2343
2343
preload : {
2344
- tfjsBackendWasmBlob : "./wasm/tfjs-backend-wasm.wasm" ,
2344
+ tfjsBackendWasmBlob : "./wasm/tfjs-backend-wasm.wasm.z " ,
2345
2345
} ,
2346
2346
async : true ,
2347
2347
deterministicRandom : true ,
@@ -2363,7 +2363,7 @@ let BENCHMARKS = [
2363
2363
"./wasm/tfjs-benchmark.js" ,
2364
2364
] ,
2365
2365
preload : {
2366
- tfjsBackendWasmSimdBlob : "./wasm/tfjs-backend-wasm-simd.wasm" ,
2366
+ tfjsBackendWasmSimdBlob : "./wasm/tfjs-backend-wasm-simd.wasm.z " ,
2367
2367
} ,
2368
2368
async : true ,
2369
2369
deterministicRandom : true ,
@@ -2600,7 +2600,7 @@ let BENCHMARKS = [
2600
2600
"./8bitbench/benchmark.js" ,
2601
2601
] ,
2602
2602
preload : {
2603
- wasmBinary : "./8bitbench/build/rust/pkg/emu_bench_bg.wasm" ,
2603
+ wasmBinary : "./8bitbench/build/rust/pkg/emu_bench_bg.wasm.z " ,
2604
2604
romBinary : "./8bitbench/build/assets/program.bin" ,
2605
2605
} ,
2606
2606
iterations : 15 ,
@@ -2615,7 +2615,7 @@ let BENCHMARKS = [
2615
2615
"./wasm/zlib/benchmark.js" ,
2616
2616
] ,
2617
2617
preload : {
2618
- wasmBinary : "./wasm/zlib/build/zlib.wasm" ,
2618
+ wasmBinary : "./wasm/zlib/build/zlib.wasm.z " ,
2619
2619
} ,
2620
2620
iterations : 40 ,
2621
2621
tags : [ "Default" , "Wasm" ] ,
0 commit comments