-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Antoine TRAN
committed
Jan 16, 2023
1 parent
5bd9add
commit 5506e15
Showing
5 changed files
with
26 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/bin/sh | ||
|
||
sifFile=/work/SC/lisa/${USER}/cnes-lisa-globalfit1-idasoft-hpc.sif | ||
|
||
# Default is 100000. Estimation time (depends on the ressources): default steps takes around a week. 10000 steps takes around 30min. | ||
steps=10000 | ||
# select=Number of node | ||
# ncpus=Number of Cpus per node for all processes | ||
# mpiprocs=Number of Cpus per node allocated for MPI. | ||
pbsRss="select=1:ncpus=40:mpiprocs=8:mem=50gb:os=rh7:generation=g2019" | ||
# Number of OpenMP threads. The higher the lesser for walltime (better). | ||
ompNumThreads=5 | ||
# Number of chains for tempering movement. Must be a multiple of OpenMP threads. | ||
chains=15 | ||
walltime=00:30:00 | ||
|
||
globalFitMode=full | ||
globalFitProfile=nominal | ||
|
||
qsubVar=pbsRss="${pbsRss}",runningMode=mpiGlobalFit,singularityFile="${sifFile}",inputFile=/work/SC/lisa/LDC/LDCdata/Challenge2/LDC2_sangria_training_v2.h5\ | ||
,globalFitMode=${globalFitMode},globalFitProfile=${globalFitProfile}\ | ||
,vgbFile=$PWD/run/auxiliaryfiles/${globalFitProfile}/ldc_sangria_vgb_list.dat,mbhDirectory=$PWD/run/auxiliaryfiles/${globalFitProfile}/,ucbDirectory=$PWD/run/auxiliaryfiles/${globalFitProfile}/\ | ||
,steps="${steps}",ompNumThreads="${ompNumThreads}",chains="${chains}" | ||
sudo qsub -u trana -W block=false -l "${pbsRss}" -l walltime="${walltime}" -v "${qsubVar}" ./run/run_pbs.sh | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters