[3850] | 1 | #$Id$ |
---|
| 2 | #column 1 column 2 |
---|
| 3 | #name of variable value of variable (~ must not be used) |
---|
| 4 | #---------------------------------------------------------------------------- |
---|
[4798] | 5 | %base_data $HOME/palm/current_version/JOBS |
---|
[3850] | 6 | %base_directory $HOME/palm/current_version |
---|
| 7 | %source_path $HOME/palm/current_version/trunk/SOURCE |
---|
| 8 | %user_source_path $base_directory/JOBS/$run_identifier/USER_CODE |
---|
| 9 | %fast_io_catalog /scratch/usr/<replace_by_your_HLRN_username> |
---|
| 10 | %local_jobcatalog /home/<replace_by_your_local_username>/job_logfiles |
---|
| 11 | %remote_jobcatalog /home/<replace_by_your_HLRN_username>/job_logfiles |
---|
| 12 | # |
---|
| 13 | %local_ip <replace by IP of your local computer> |
---|
| 14 | %local_username <replace_by_your_local_username> |
---|
| 15 | %remote_ip 134.76.43.141 |
---|
| 16 | %remote_loginnode glogin1 |
---|
| 17 | %remote_username <replace_by_your_HLRN_username> |
---|
| 18 | %ssh_key id_rsa_hlrn |
---|
[4798] | 19 | %defaultqueue standard96:test |
---|
[4410] | 20 | %submit_command /cm/shared/batch/bin/sbatch |
---|
[3850] | 21 | |
---|
| 22 | %compiler_name mpiifort |
---|
| 23 | %compiler_name_ser ifort |
---|
| 24 | %cpp_options -cpp -DMPI_REAL=MPI_DOUBLE_PRECISION -DMPI_2REAL=MPI_2DOUBLE_PRECISION -D__lc -D__parallel -D__netcdf -D__netcdf4 -D__netcdf4_parallel -D__intel_compiler -D__fftw |
---|
| 25 | %make_options -j 4 |
---|
[4798] | 26 | %compiler_options -fpe0 -check -check nooutput_conversion -traceback -g -O0 -align all -ftz -xCORE-AVX512 -no-prec-div -no-prec-sqrt -ip -convert little_endian -I /sw/dataformats/netcdf/intel.18/4.7.3/skl/include/ -I /sw/numerics/fftw3/impi/intel/3.3.8/skl/include/ |
---|
| 27 | %linker_options -Wl,-rpath=\\$LD_RUN_PATH \\`nf-config --flibs\\` -L /sw/numerics/fftw3/impi/intel/3.3.8/skl/lib -lfftw3 |
---|
| 28 | %module_commands module use /sw/modules/HLRN; module load HLRNenv sw.skl slurm intel/19.1.2 impi netcdf-parallel/impi/intel fftw3/impi/intel |
---|
[3850] | 29 | %execute_command srun --propagate=STACK --kill-on-bad-exit -n {{mpi_tasks}} -N {{nodes}} --ntasks-per-node={{tasks_per_node}} palm |
---|
| 30 | %execute_command_for_combine srun --propagate=STACK -n 1 --ntasks-per-node=1 combine_plot_fields.x |
---|
| 31 | %memory 2300 |
---|
| 32 | |
---|
| 33 | # BATCH-directives to be used for batch jobs. If $-characters are required, hide them with 3 backslashes |
---|
[4083] | 34 | BD:#!/bin/bash |
---|
[4484] | 35 | BD:#SBATCH --job-name={{run_id}} |
---|
[3850] | 36 | BD:#SBATCH --time={{cpu_hours}}:{{cpu_minutes}}:{{cpu_seconds}} |
---|
[4083] | 37 | BD:#SBATCH --ntasks={{mpi_tasks}} |
---|
[3850] | 38 | BD:#SBATCH --nodes={{nodes}} |
---|
| 39 | BD:#SBATCH --ntasks-per-node={{tasks_per_node}} |
---|
| 40 | BD:#SBATCH --partition={{queue}} |
---|
| 41 | BD:#SBATCH --output={{job_protocol_file}} |
---|
| 42 | BD:#SBATCH --error={{job_protocol_file}} |
---|
| 43 | |
---|
| 44 | # |
---|
| 45 | # BATCH-directives for batch jobs used to send back the jobfile from a remote to a local host |
---|
| 46 | BDT:#!/bin/bash |
---|
| 47 | BDT:#SBATCH --job-name=job_transfer |
---|
| 48 | BDT:#SBATCH --time=00:30:00 |
---|
[4083] | 49 | BDT:#SBATCH --ntasks=1 |
---|
[3850] | 50 | BDT:#SBATCH --nodes=1 |
---|
| 51 | BDT:#SBATCH --ntasks-per-node=1 |
---|
| 52 | BDT:#SBATCH --partition={{queue}} |
---|
| 53 | BDT:#SBATCH --output={{job_transfer_protocol_file}} |
---|
| 54 | BDT:#SBATCH --error={{job_transfer_protocol_file}} |
---|
| 55 | |
---|
| 56 | #---------------------------------------------------------------------------- |
---|
[4083] | 57 | # INPUT-commands, executed before running PALM - lines must start with "IC:" |
---|
[3850] | 58 | #---------------------------------------------------------------------------- |
---|
| 59 | # my settings |
---|
| 60 | IC:ulimit -s unlimited # requires --propagate=STACK in srun command to distribute to all nodes |
---|
| 61 | IC:export I_MPI_PMI_LIBRARY=libpmi.so |
---|
| 62 | IC:export I_MPI_FABRICS=shm:ofi |
---|
[4083] | 63 | IC:export I_MPI_OFI_PROVIDER=psm2 |
---|
[4798] | 64 | IC:export I_MPI_ADJUST_ALLTOALL=3 |
---|
| 65 | IC:export I_MPI_HYDRA_BRANCH_COUNT=128 |
---|
[3850] | 66 | IC:module list |
---|
| 67 | |
---|
| 68 | #---------------------------------------------------------------------------- |
---|
| 69 | # ERROR-commands - executed when program terminates abnormally |
---|
| 70 | #---------------------------------------------------------------------------- |
---|
| 71 | EC:[[ \$locat = execution ]] && cat RUN_CONTROL |
---|
| 72 | EC:[[ \$locat = execution ]] && cat PARTICLE_INFOS/* |
---|
| 73 | |
---|
| 74 | #---------------------------------------------------------------------------- |
---|
| 75 | # OUTPUT-commands - executed when program terminates normally |
---|
| 76 | #---------------------------------------------------------------------------- |
---|
| 77 | |
---|
| 78 | # Combine 1D- and 3D-profile output (these files are not usable for plotting) |
---|
| 79 | OC:[[ -f LIST_PROFIL_1D ]] && cat LIST_PROFIL_1D >> LIST_PROFILE |
---|
| 80 | OC:[[ -f LIST_PROFIL ]] && cat LIST_PROFIL >> LIST_PROFILE |
---|
| 81 | |
---|
| 82 | # Combine all particle information files |
---|
| 83 | OC:[[ -f PARTICLE_INFOS/_0000 ]] && cat PARTICLE_INFOS/* >> PARTICLE_INFO |
---|