Adding scripts, commands, and logging scaffolding

This commit is contained in:
Carlos Gutierrez
2025-10-05 01:59:00 +00:00
parent f1debadbb3
commit 1d39c0cbd7
15 changed files with 193 additions and 89 deletions

23
scripts/11_run_all.sh Executable file
View 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"