Adding scripts, commands, and logging scaffolding"

This commit is contained in:
Carlos Gutierrez
2025-10-04 21:54:21 +00:00
parent 2cc1bb447a
commit f1debadbb3
17 changed files with 292 additions and 0 deletions

23
scripts/20_sweep.sh Normal file
View File

@@ -0,0 +1,23 @@
#!/bin/bash
set -eu
source "$(dirname "$0")/00_env.sh"
run_case () {
local W=$1 CORE=$2 DV=$3 D=$4 L2=$5 MEM=16GB
bash "$(dirname "$0")/10_run_one.sh" "$W" "$CORE" "$DV" "$D" "$L2" "$MEM"
}
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 "[sweep] ALL DONE"