mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-16 08:46:08 +03:00
16 lines
488 B
Bash
Executable File
16 lines
488 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# TODO: This script is temporary, remove it from the repo
|
|
|
|
|
|
SIZE="25M"
|
|
|
|
hyperfine \
|
|
--warmup 10 \
|
|
-n memcpy \
|
|
"./zig-out/bin/bench-stream --mode=gen-ascii | head -c ${SIZE} | ./zig-out/bin/bench-stream --mode=noop" \
|
|
-n scalar \
|
|
"./zig-out/bin/bench-stream --mode=gen-ascii | head -c ${SIZE} | ./zig-out/bin/bench-stream --mode=scalar" \
|
|
-n simd \
|
|
"./zig-out/bin/bench-stream --mode=gen-ascii | head -c ${SIZE} | ./zig-out/bin/bench-stream --mode=simd"
|