HW3: Small changes to build and analyze scripts
This commit is contained in:
@@ -1,9 +1,22 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
|
||||
#
|
||||
# Run the following command from the directory where the slurm files should be created
|
||||
#
|
||||
# Invocation ./submitJobs.sh <hpcDirectory>
|
||||
#
|
||||
|
||||
# Check if a directory argument is given
|
||||
if [[ -z "$1" ]]; then
|
||||
echo "Usage: $0 <directory>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Submission parameters
|
||||
QOS="small"
|
||||
PARTITION="ampere" # ampere gpu
|
||||
SCRIPT_DIR="hpc" # Directory containing the job scripts
|
||||
SCRIPT_DIR="$1" # Directory containing the job scripts
|
||||
|
||||
# Range of values for the -q parameter
|
||||
VERSIONS=("V0" "V1" "V2")
|
||||
|
||||
Reference in New Issue
Block a user