Adding scripts, commands, and logging scaffolding
This commit is contained in:
23
scripts/11_run_all.sh
Executable file
23
scripts/11_run_all.sh
Executable file
@@ -0,0 +1,23 @@
|
||||
#!/bin/bash
|
||||
set -eu
|
||||
. "$(dirname "$0")/env.sh"
|
||||
|
||||
run_case () {
|
||||
W=$1; CORE=$2; DV=$3; D=$4; L2=$5
|
||||
sh "$(dirname "$0")/run_one.sh" "$W" "$CORE" "$DV" "$D" "$L2" 16GB
|
||||
}
|
||||
|
||||
for W in tinyml_kws sensor_fusion aes_ccm attention_kernel; do
|
||||
for DV in high low; do
|
||||
for D in 0 1; do
|
||||
for L2 in 512kB 1MB; do
|
||||
run_case "$W" big "$DV" "$D" "$L2"
|
||||
run_case "$W" little "$DV" "$D" "$L2"
|
||||
run_case "$W" hybrid "$DV" "$D" "$L2"
|
||||
done
|
||||
done
|
||||
done
|
||||
done
|
||||
|
||||
echo "[run_all] ALL DONE"
|
||||
|
||||
Reference in New Issue
Block a user