Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Prochaine révision
Révision précédente
Dernière révisionLes deux révisions suivantes
en:documentation:tutorials:submit [2018/01/17 06:59] – créée cicalugaen:documentation:tutorials:submit [2020/08/25 15:58] – créée - modification externe 127.0.0.1
Ligne 2: Ligne 2:
  
  
-The batch system currently used at the PSMN is Sun Grid Engine (SGE). Its documentation is [[documentation:tools:sge|on this page]] as well as [[faq:sge|dans la F.A.Q.]].+The batch system currently used at the PSMN is Sun Grid Engine (SGE).  
 + 
 +Its documentation is [[en:documentation:tools:sge|on this page]] as well as [[en:faq:accueil|in the F.A.Q.]].
  
  
Ligne 40: Ligne 42:
 #$ -N SommeVecVecPAR #$ -N SommeVecVecPAR
 ### queue (to change) ### queue (to change)
-#$ -q E5-2670_test+#$ -q E5_test
 ### parallel environment & nb cpu (NSLOTS) (to change) ### parallel environment & nb cpu (NSLOTS) (to change)
 #$ -pe test_debian 2 #$ -pe test_debian 2
Ligne 56: Ligne 58:
 # important, otherwise the program is running since ~/ # important, otherwise the program is running since ~/
 cd ${SGE_O_WORKDIR} cd ${SGE_O_WORKDIR}
 +
 +# init env (should be in ~/.profile)
 +source /usr/share/lmod/lmod/init/bash
  
 ### configure the environment (to change) ### configure the environment (to change)
- +module load iccifort/2017.4 
-module load intel/2017.4/impi/2017.3.196+module load intel/2017.4b/OpenMPI/3.0.0
  
 ### au besoin, forcer l'env OpenMPI ### au besoin, forcer l'env OpenMPI
-PREFIX="/applis/PSMN/debian9/software/Compiler/intel/2017.4/impi/2017.3.196/intel64/"+PREFIX="/applis/PSMN/debian9/software/Compiler/intel/2017.4b/OpenMPI/3.0.0/"
 MPIRUN=${PREFIX}/bin/mpirun MPIRUN=${PREFIX}/bin/mpirun
  
 ### program execution (to change with your executable) ### program execution (to change with your executable)
 ###EXECDIR=${HOME}/Formations/Parallel ###EXECDIR=${HOME}/Formations/Parallel
-###${MPIRUN} -v -prefix ${PREFIX} -mca btl sm,openib,self -hostfile ${HOSTFILE} -np ${NSLOTS} ${EXECDIR}/SommeVecVecPAR.exe +###${MPIRUN} -v -prefix ${PREFIX} -mca btl vader,openib,self -hostfile ${HOSTFILE} -np ${NSLOTS} ${EXECDIR}/SommeVecVecPAR.exe 
-#mpirun -v -np ${NSLOTS} ${EXECDIR}/SommeVecVecPAR.exe + 
-${MPIRUN} -v -prefix ${PREFIX} -mca btl sm,openib,self -np ${NSLOTS} SommeVecVecPAR.f90.exe+${MPIRUN} -v -prefix ${PREFIX} -mca btl vader,openib,self -np ${NSLOTS} SommeVecVecPAR.exe
  
 # fin # fin
Ligne 79: Ligne 84:
 ====== Surveiller un job ====== ====== Surveiller un job ======
  
-See [[documentation:tools:sge#surveiller_les_jobs|the documentation]] which corresponds and [[documentation:examples:qstat_cli| the exemples]].+See corresponding [[documentation:tools:sge#surveiller_les_jobs|the documentation]]  and [[documentation:examples:qstat_cli| the examples]].