diff --git a/README.md b/README.md index 46fdc1d18cd..539703c4635 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ npm i undici The benchmark is a simple `hello world` [example](benchmarks/benchmark.js) using a number of unix sockets (connections) with a pipelining depth of 10 running on Node 16. -The benchmarks have the [simd](https://github.com/WebAssembly/simd) feature enabled. +The benchmarks below have the [simd](https://github.com/WebAssembly/simd) feature enabled. ### Connections 1 diff --git a/package.json b/package.json index 259c18ad6d8..e75c044bb8c 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,8 @@ "bench:simd": "concurrently -k -s first npm:bench:server npm:bench:run:simd", "bench:server": "node benchmarks/server.js", "prebench:run": "node benchmarks/wait.js", - "bench:run": "CONNECTIONS=1 node --experimental-wasm-simd benchmarks/benchmark.js && CONNECTIONS=50 node --experimental-wasm-simd benchmarks/benchmark.js", + "bench:run": "CONNECTIONS=1 node benchmarks/benchmark.js && CONNECTIONS=50 node benchmarks/benchmark.js", + "bench:run:simd": "CONNECTIONS=1 node --experimental-wasm-simd benchmarks/benchmark.js && CONNECTIONS=50 node --experimental-wasm-simd benchmarks/benchmark.js", "serve:website": "docsify serve .", "prepare": "husky install" },