forked from sarah-quinones/faer-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaunch_benches.sh
executable file
·9 lines (8 loc) · 970 Bytes
/
launch_benches.sh
1
2
3
4
5
6
7
8
9
OMP_NUM_THREADS=12 ./mkl_bench --output="diol_mkl_mt.json" --func-filter="$FUNC_FILTER" --arg-filter="$ARG_FILTER"
OMP_NUM_THREADS=12 ./openblas_bench --output="diol_openblas_mt.json" --func-filter="$FUNC_FILTER" --arg-filter="$ARG_FILTER"
OMP_NUM_THREADS=1 ./mkl_bench --output="diol_mkl_st.json" --func-filter="$FUNC_FILTER" --arg-filter="$ARG_FILTER"
OMP_NUM_THREADS=1 ./openblas_bench --output="diol_openblas_st.json" --func-filter="$FUNC_FILTER" --arg-filter="$ARG_FILTER"
cargo bench --bench bench --features=nightly -- --output="diol_faer_mt.json" --func-filter="faer_par_""$FUNC_FILTER" --arg-filter="$ARG_FILTER"
cargo bench --bench bench --features=nightly -- --output="diol_faer_st.json" --func-filter="faer_seq_""$FUNC_FILTER" --arg-filter="$ARG_FILTER"
cargo bench --bench bench --features=nightly -- --output="diol_nalgebra_st.json" --func-filter="nalgebra_""$FUNC_FILTER" --arg-filter="$ARG_FILTER"
cargo bench --bench bench_aggregate --features=nightly