9 lines
184 B
Bash
Executable File
9 lines
184 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
python bench/bench_vector_add.py "$@"
|
|
python bench/bench_softmax.py "$@"
|
|
python bench/bench_matmul.py "$@"
|
|
python bench/bench_attention.py "$@"
|
|
|