-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjob_eval.sh
More file actions
22 lines (18 loc) · 892 Bytes
/
Copy pathjob_eval.sh
File metadata and controls
22 lines (18 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
#SBATCH --job-name=diff_stitch # Name of the job
#SBATCH --output=job/eval_job_output_%j.txt # Standard output file
#SBATCH --error=job/eval_job_error_%j.txt # Standard error file
#SBATCH --ntasks=1 # Number of tasks (usually 1 for a simple script)
#SBATCH --partition=camera-long # Partition to submit the job to (e.g., 'general')
#SBATCH --ntasks-per-node=1
#SBATCH --nodes=1 # Number of nodes
#SBATCH --gres=gpu:h200:4 # Number of GPUs (if required)
#SBATCH --mail-type=ALL # Send email notifications for all events (start, end, fail)
# Set up the PATH for Conda (if Conda is installed in ~/miniconda3)
export PATH="$HOME/miniconda3/bin:$PATH"
echo $PATH
# Initialize Conda
source $HOME/miniconda3/etc/profile.d/conda.sh
conda activate diff_stitching
echo $CONDA_PREFIX
bash eval/run_eval.sh