User Tools

Site Tools


software:himster2

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
software:himster2 [2019/09/11 09:46] himusersoftware:himster2 [2022/01/14 18:44] (current) – external edit 127.0.0.1
Line 1: Line 1:
  
-=== SSH connection to the git repository ===+=== Source code checkout === 
  
-Set up the ssh connection to ''bwec-fileserver'' through the HIM gateway following the instructions at https://www.hi-mainz.de/intern/service/ssh-gateway/ 
- 
-\\ 
-=== Source code checkout === 
 <code> <code>
 git clone https://gitlab.rlp.net/emp/primasoft.git git clone https://gitlab.rlp.net/emp/primasoft.git
 </code> </code>
  
-Alternatively (not preferred), check out from the fileserver+Alternatively (not preferred), check out from the fileserver. \\ 
 + 
 +Set up the ssh connection to ''bwec-fileserver'' through the HIM gateway following the instructions at https://www.hi-mainz.de/intern/service/ssh-gateway/ \\ 
 +Then check out:
 <code> <code>
 git clone agmaas@bwec-fileserver:/home/agmaas/git/primasoft.git git clone agmaas@bwec-fileserver:/home/agmaas/git/primasoft.git
Line 18: Line 17:
 \\ \\
 === Environment setup === === Environment setup ===
-load module and set the variable FAIRSOFT_BUILD_DIR:+load module and set the variable FAIRSOFT_BUILD_DIR:\\ 
 +new since Nov 2020:
 <code> <code>
-module load fairsoft/gcc/8.1.0/may18 +export MODULEPATH=$MODULEPATH:/cluster/him/modulefiles 
-export FAIRSOFT_BUILD_DIR=/cluster/him/fairsoft/gcc_8.1.0/may18/+module load fairsoft/gcc/8.3.0/may18p1 
 +export FAIRSOFT_BUILD_DIR=/cluster/him/fairsoft/gcc_8.3.0/may18p1/
 </code> </code>
 +
 or or
 <code> <code>
Line 38: Line 40:
  
 In the following a minimum script to run a single job on slurm is given. In the following a minimum script to run a single job on slurm is given.
 +To submit your job use 
 +<code>
 +$ sbatch myjobscript
 +</code>
 +
 +
 +Example for myjobscript:
  
 <code> <code>
Line 55: Line 64:
    
 #SBATCH -A m2_him_exp            # Specify allocation to charge against #SBATCH -A m2_him_exp            # Specify allocation to charge against
-  + 
-  +script to set the environment is sourced. It must contain all  
-Launch the executable script. It must contain all environment settings  +environment settings needed to run the program, as if you would  
-# needed to run the program, as if you would run it just after login on himsterII. +run it just after login on himsterII. Something like  
-Something like +#
 #  module load fairsoft/gcc/8.1.0/may18 #  module load fairsoft/gcc/8.1.0/may18
 #  export FAIRSOFT_BUILD_DIR=... #  export FAIRSOFT_BUILD_DIR=...
 +#
 # should be in there. Think about what you need. # should be in there. Think about what you need.
 # #
-# The file output.log is where all the shell output of the job will be saved. 
  
-srun -o output.log myscript.sh+source mysetenv.sh 
 +  
 +# Submit the executable with the needed arguments (it might also be a script) 
 + 
 +srun <executable> <arguments>
  
 </code> </code>
Line 72: Line 85:
  
 An example script is given here to run a train of jobs with different ''.conf'' files and ''run.mac'' macros. An example script is given here to run a train of jobs with different ''.conf'' files and ''run.mac'' macros.
-It is broken down in pieces with comments in between, deliberately to avoid unthoughtful copy-pasting.+It is broken down in pieces with comments between them, deliberately to try and avoid unthoughtful copy-pasting. Things can be done in many different ways, this is just an example which should run and also produce  result output files, structured in a useful way.
  
 Provide the possibility to have a "dry runs" where all scripts are prepared and can be checked, without actually starting the jobs. That is very useful to avoid having to chase running jobs with wrong settings. Provide the possibility to have a "dry runs" where all scripts are prepared and can be checked, without actually starting the jobs. That is very useful to avoid having to chase running jobs with wrong settings.
 +
 +The following code can be executed with:
 +<code>
 +$ ./myjobscript
 +</code>
  
 <code> <code>
Line 94: Line 112:
  
  
- +Base macro and config files have to be copied previously to the output directory and will be used as starting point for the job specific ones. 
 +The directory structure for all input and output files is constructed.
 <code> <code>
 # base scripts to be completed for single jobs # base scripts to be completed for single jobs
Line 112: Line 130:
 mkdir -p $outpath/rootfiles mkdir -p $outpath/rootfiles
 </code> </code>
 +
 +
 +The main loop on the jobs to be started (200 in this example) starts here. For each job config and macro files are completed, the job script is constructed and the job submitted if it is not a dry run.
 <code> <code>
 for i in `seq 0 199`; do for i in `seq 0 199`; do
software/himster2.1568195213.txt.gz · Last modified: 2022/01/14 18:44 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki