-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.yml
More file actions
34 lines (34 loc) · 1.31 KB
/
Copy pathoptions.yml
File metadata and controls
34 lines (34 loc) · 1.31 KB
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
# The executable that you wish to run
executable: cp2k.popt
# The input file, if required, for the program
input_file: input.inp
#########################################################################
# N.B. The keys below are followed by | which indicates to the #
# parser that the corresponding values are to be stored as they are #
# provided and shall not be split or operated upon. #
# #######################################################################
# The mpiexec command on your machine along with an environment
# variable (resource management dependent) that sets the number of cores.
mpiexec: |
mpirun -np $LOADL_TOTAL_TASKS
# This directs the script to run the sumission commands through ssh
use_ssh: |
ssh user@server
# The preamble corresponds to commands that might be specific to the
# machine. These lines will be preceeded by an # in the final script.
preamble: |
@ job_type = mpich
@ environment = COPY_ALL
@ queue
# The modules to load
modules: |
purge
intel-env
intelmpi
# Any extra commands you might with to include
extras: |
unset LD_PRELOAD
# Any variables that you might wish to export
exports: |
PYTHONPATH=/home/user/Source/code:$PYTHONPATH
PATH=/home/user/Source/cp2k-3.0_modif/exe/Linux-x86-64-intel:$PATH