-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.qsub.sh
35 lines (26 loc) · 1016 Bytes
/
test.qsub.sh
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
27
28
29
30
31
32
33
34
35
#This is the most basic QSUB file needed for this cluster.
# Further examples can be found under /share/apps/examples
# Most software is NOT in your PATH but under /share/apps
#
# For further info please read http://hpc.cs.ucl.ac.uk
# For cluster help email cluster-support@cs.ucl.ac.uk
#
# NOTE hash dollar is a scheduler directive not a comment.
# These are flags you must include - Two memory and one runtime.
# Runtime is either seconds or hours:min:sec
#$ -l h_rt=100000
#$ -l gpu=True,gpu_type=a6000
#$ -l tmem=40G
#$ -pe gpu 1
#These are optional flags but you probably want them in all jobs
#$ -S /bin/bash
#$ -j y
#$ -N az_test_hall
#$ -cwd
#The code you want to run now goes here.
source /share/apps/source_files/python/python-3.9.5.source
export PATH=/share/apps/python-3.9.5-shared/bin:$PATH
export LD_LIBRARY_PATH=/share/apps/python-3.9.5-shared/lib:$LD_LIBRARY_PATH
source /share/apps/source_files/cuda/cuda-10.2.source
source /home/seunghki/skim_py39/bin/activate
python3 test.py