marc

1. How to Access the Software
module load DEPRECTAED module load marc |
2. Example Batch Scripts
Serial Job
#!/usr/local_rwth/bin/zsh ### Job name #SBATCH --job-name=MARC_SERIAL ### File / path which STDOUT will be written to, %J is the job ID #SBATCH --output MARC_SERIAL.%J ### Request the time you need for execution. The full format is D-HH:MM:SS ### You must at least specify minutes or days and hours and may add or ### leave out any other parameters #SBATCH --time=80 ### Request the memory you need for your job. You can specify this ### in either MB (1024M) or GB (4G). #SBATCH --mem-per-cpu=1850M ### Change to the work directory, if not in submit directory #cd /home/user/workdirectory ### Load required modules module load DEPRECATED module load marc # start non-interactive batch job run_marc -j jid -q f -sdir $TMP [ options: -u user_subroutine -v (y | n) -sav (y | n) ] |
|
Parallel MPI Job
#!/usr/local_rwth/bin/zsh ### Job name #SBATCH --job-name=MARC_MPI ### File / path which STDOUT will be written to, %J is the job ID #SBATCH --output=MARC_MPI.%J ### Request the time you need for execution. The full format is D-HH:MM:SS ### You must at least specify minutes or days and hours and may add or ### leave out any other parameters #SBATCH --time=80 ### Request the memory you need for your job. You can specify this ### in either MB (1024M) or GB (4G). #SBATCH --mem-per-cpu=1850M ### Number of processes to start #SBATCH --ntasks=4 ### Change to the work directory, if needed #cd /home/user/workdirectory ### Load required modules module load DEPRECATED module load marc # start non-interactive batch job run_marc -j jid -sdir $TMP -nprocd 4 -q f -sav y -v n -host ${SLURM_JOB_NODELIST}.marc # with single input file # run_marc -j jid -sdir $TMP -nprocd 4 -q f -sav y -v n -host ${SLURM_JOB_NODELIST}.marc |
|
zuletzt geändert am 14.07.2022
Wie hat Ihnen dieser Inhalt geholfen?