HW3: RC2 - A prephase added for v1 and v2

This commit is contained in:
2025-02-16 16:05:01 +02:00
parent 7a6f7f53b5
commit f749862193
68 changed files with 9039 additions and 24 deletions
+4 -3
View File
@@ -2,8 +2,8 @@
# Submission parameters
QOS="small"
PARTITION="ampere"
SCRIPT_DIR="hpc" # Directory containing the job scripts
PARTITION="ampere" # ampere gpu
SCRIPT_DIR="hpc" # Directory containing the job scripts
# Range of values for the -q parameter
VERSIONS=("V0" "V1" "V2")
@@ -17,8 +17,9 @@ for version in "${VERSIONS[@]}"; do
script_path="${SCRIPT_DIR}/${script_name}"
if [[ -f "$script_path" ]]; then
echo "Submitting: $script_path"
sbatch --qos="$QOS" -p "$PARTITION" "$script_path"
echo "Submitted: $script_path"
#sbatch -p "$PARTITION" "$script_path"
else
echo "Warning: File not found - $script_path"
fi