forked from shxr3f/PyHipp-23
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrplparallel-slurm.sh
More file actions
15 lines (11 loc) · 824 Bytes
/
rplparallel-slurm.sh
File metadata and controls
15 lines (11 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
# Submit this script with: sbatch <this-filename>
#SBATCH --time=1:00:00 # walltime
#SBATCH --ntasks=1 # number of processor cores (i.e. tasks)
#SBATCH --nodes=1 # number of nodes
#SBATCH -J "rplpl" # job name
## /SBATCH -p general # partition (queue)
#SBATCH -o rplpl-slurm.%N.%j.out # STDOUT
#SBATCH -e rplpl-slurm.%N.%j.err # STDERR
# LOAD MODULES, INSERT CODE, AND RUN YOUR PROGRAMS HERE
python -u -c "import PyHipp as pyh; import DataProcessingTools as DPT; import time; import os; t0 = time.time(); print(time.localtime()); DPT.objects.processDirs(dirs=None, objtype=pyh.RPLParallel, saveLevel=1); DPT.objects.processDirs(dirs=None, objtype=pyh.Unity, saveLevel=1); pyh.EDFSplit(); os.chdir('session01'); pyh.aligning_objects(); pyh.raycast(1); print(time.localtime()); print(time.time()-t0);"