1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-10 08:09:06 -05:00
denoland-deno/cli/bench/stdio
2024-12-31 19:12:39 +00:00
..
README.md perf: use fast api for io read/write sync (#15863) 2022-12-02 11:35:18 +05:30
stdio.c chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
stdio.js chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00

stdio benchmarks

Compile the C baseline and run the benchmark:

cc stdio.c -o stdio -O3
time dd if=/dev/zero bs=65536 count=500000 | ./stdio
time dd if=/dev/zero bs=65536 count=500000 | deno run stdio.js