-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfoo.sh
More file actions
26 lines (23 loc) · 750 Bytes
/
foo.sh
File metadata and controls
26 lines (23 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh
#
# Simple "Hello World" submit script for Slurm.
#
# Replace <ACCOUNT> with your account name before submitting.
#
######### #SBATCH --account=edu #<ACCOUNT> # The account name for the job.
#SBATCH --account=edu
#SBATCH --job-name=Exp1 # The job name.
#SBATCH -c 4 # The number of cpu cores to use.
#SBATCH --time=1:00 # The time the job will take to run.
#SBATCH --mem-per-cpu=1gb # The memory the job will use per cpu core.
#SBATCH --gres=gpu:1 # Request a gpu module
# Load Python module
###module load python/3.9.5
module load anaconda/3-2022.05
#python lab2.py
/moto/opt/anaconda3-2022.05/bin/python3 lab2.py
echo "hi"
echo "Big update"
#sleep 10
#date
# End of script