0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-14 09:36:17 -05:00
denoland-deno/cli/bench/stdio
2024-01-01 19:58:21 +00:00
..
README.md
stdio.c
stdio.js chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +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