This commit is contained in:
Přemysl Eric Janouch 2024-02-13 15:44:42 +01:00
parent 9e22bd0e20
commit 19705527a0
Signed by: p
GPG Key ID: A0420B94F92B9493

View File

@ -28,11 +28,9 @@ run() {
for model in models/*.model for model in models/*.model
do do
name=$(sed -n 's/^name=//p' "$model") name=$(sed -n 's/^name=//p' "$model")
run "" 1 "$model" "$@" for batch in 1 4 16
run "" 4 "$model" "$@" do
run "" 16 "$model" "$@" run "" $batch "$model" "$@"
run --cpu $batch "$model" "$@"
run --cpu 1 "$model" "$@" done
run --cpu 4 "$model" "$@"
run --cpu 16 "$model" "$@"
done done