Skip to content
Snippets Groups Projects
Commit 6b996cb0 authored by RODIER Quentin's avatar RODIER Quentin
Browse files

Quentin 28/11/2023: update bugfix 5.6.2é

parent abaaac9e
No related branches found
No related tags found
No related merge requests found
Showing
with 58 additions and 58 deletions
# #
# Version of PACKAGE MESONH "Open distribution" # Version of PACKAGE MESONH "Open distribution"
# PACK-MNH-V5-6-1 # PACK-MNH-V5-6-2
# DATE : 25/09/2023 # DATE : 25/09/2023
# VERSION : MESONH MASDEV5_6 + BUG-1 # VERSION : MESONH MASDEV5_6 + BUG-1
# #
...@@ -84,14 +84,14 @@ ...@@ -84,14 +84,14 @@
# #
# or directly # or directly
# #
# http://mesonh.aero.obs-mip.fr/mesonh/dir_open/dir_MESONH/MNH-V5-6-1.tar.gz # http://mesonh.aero.obs-mip.fr/mesonh/dir_open/dir_MESONH/MNH-V5-6-2.tar.gz
# #
# Then untar the file "MNH-V5-6-1.tar.gz" where you want to. # Then untar the file "MNH-V5-6-2.tar.gz" where you want to.
# For example, in your home directory: # For example, in your home directory:
# #
cd ~ cd ~
tar xvfz MNH-V5-6-1.tar.gz tar xvfz MNH-V5-6-2.tar.gz
# #
# Process now to the chapter to configure the MesoNH package. # Process now to the chapter to configure the MesoNH package.
...@@ -171,10 +171,10 @@ git config --global http.sslverify false ...@@ -171,10 +171,10 @@ git config --global http.sslverify false
# Finally you can clone the Meso-NH Git repository with the following command: # Finally you can clone the Meso-NH Git repository with the following command:
# #
git lfs clone anongit@anongit_mesonh:/gitrepos/MNH-git_open_source-lfs.git -b MNH-56-branch MNH-V5-6-1 git lfs clone anongit@anongit_mesonh:/gitrepos/MNH-git_open_source-lfs.git -b MNH-56-branch MNH-V5-6-2
# #
# that will create the MNH-V5-6-1 directory containing a clone (copy) of the # that will create the MNH-V5-6-2 directory containing a clone (copy) of the
# Meso-NH package on the remote developpement branch MNH-56-branch # Meso-NH package on the remote developpement branch MNH-56-branch
# #
# #
...@@ -184,34 +184,34 @@ git lfs clone anongit@anongit_mesonh:/gitrepos/MNH-git_open_source-lfs.git -b MN ...@@ -184,34 +184,34 @@ git lfs clone anongit@anongit_mesonh:/gitrepos/MNH-git_open_source-lfs.git -b MN
# Once the repository is cloned, it's better for you to checkout your own branch # Once the repository is cloned, it's better for you to checkout your own branch
# (by default, you are on HEAD of the MNH-56-branch development branch ). # (by default, you are on HEAD of the MNH-56-branch development branch ).
# #
# To create your local branch corresponding to the V5-6-1 version, type: # To create your local branch corresponding to the V5-6-2 version, type:
# #
cd MNH-V5-6-1 cd MNH-V5-6-2
git checkout -b MYB-MNH-V5-6-1 PACK-MNH-V5-6-1 git checkout -b MYB-MNH-V5-6-2 PACK-MNH-V5-6-2
# #
# MYB-MNH-V5-6-1 is the name of the local branch you created # MYB-MNH-V5-6-2 is the name of the local branch you created
# and # and
# PACK-MNH-V5-6-1 is the remote/origin tag on which it is based. # PACK-MNH-V5-6-2 is the remote/origin tag on which it is based.
# #
# The advantage of this way of downloading the package is that in the future # The advantage of this way of downloading the package is that in the future
# you could check/update quickly differences with the new version of the # you could check/update quickly differences with the new version of the
# package without having to download entirely the full package. # package without having to download entirely the full package.
# #
# Suppose that a new version, for example "PACK-MNH-V5-6-1", is announced. # Suppose that a new version, for example "PACK-MNH-V5-6-2", is announced.
# #
# To see the differences with your working copy, do: # To see the differences with your working copy, do:
# #
git fetch git fetch
git diff HEAD PACK-MNH-V5-6-1 git diff HEAD PACK-MNH-V5-6-2
# #
# To go to the new version, you can, for example, create a new local branch: # To go to the new version, you can, for example, create a new local branch:
# #
git checkout -b MYB-MNH-V5-6-1 PACK-MNH-V5-6-1 git checkout -b MYB-MNH-V5-6-2 PACK-MNH-V5-6-2
# #
# At any time, you can also check for "uptodate" changes in the Git branch # At any time, you can also check for "uptodate" changes in the Git branch
...@@ -257,7 +257,7 @@ git clone anongit@anongit_mesonh:/gitrepos/MNH-DOC.git ...@@ -257,7 +257,7 @@ git clone anongit@anongit_mesonh:/gitrepos/MNH-DOC.git
# use the "./configure" script like this # use the "./configure" script like this
# #
cd ~/MNH-V5-6-1/src cd ~/MNH-V5-6-2/src
./configure ./configure
. ../conf/profile_mesonh . ../conf/profile_mesonh
...@@ -308,7 +308,7 @@ export OPTLEVEL=O2 # Compile in O2, 4 times faster then DEBUG, but less ...@@ -308,7 +308,7 @@ export OPTLEVEL=O2 # Compile in O2, 4 times faster then DEBUG, but less
# and then source/load the new generate file # and then source/load the new generate file
. ../conf/profile_mesonh.LXifort.MNH-V5-6-1.MPIAUTO.O2 . ../conf/profile_mesonh.LXifort.MNH-V5-6-2.MPIAUTO.O2
# #
# REM: # REM:
...@@ -333,7 +333,7 @@ export OPTLEVEL=O2 # Compile in O2, 4 times faster then DEBUG, but less ...@@ -333,7 +333,7 @@ export OPTLEVEL=O2 # Compile in O2, 4 times faster then DEBUG, but less
# go to the directory "src" # go to the directory "src"
# #
cd ~/MNH-V5-6-1/src cd ~/MNH-V5-6-2/src
# #
# if you have not already configured your MESONH environment # if you have not already configured your MESONH environment
...@@ -562,7 +562,7 @@ make examples ...@@ -562,7 +562,7 @@ make examples
# #
cd $WORKDIR cd $WORKDIR
cd MNH-V5-6-1/src cd MNH-V5-6-2/src
./configure ./configure
...@@ -576,8 +576,8 @@ cd MNH-V5-6-1/src ...@@ -576,8 +576,8 @@ cd MNH-V5-6-1/src
# - On JEAN-ZAY ( HPE ) the compilation is in interactive : # - On JEAN-ZAY ( HPE ) the compilation is in interactive :
cd MNH-V5-6-1/src cd MNH-V5-6-2/src
. ../conf/profile_mesonh-LXifort-R8I4-MNH-V5-6-1-MPIINTEL-O2 . ../conf/profile_mesonh-LXifort-R8I4-MNH-V5-6-2-MPIINTEL-O2
make -j16 |& tee error$XYZ make -j16 |& tee error$XYZ
make installmaster make installmaster
...@@ -612,12 +612,12 @@ sbatch job_make_examples_BullX_occigen ...@@ -612,12 +612,12 @@ sbatch job_make_examples_BullX_occigen
# - ssh irene-fr : for Intel SkyLake processors # - ssh irene-fr : for Intel SkyLake processors
# On Intel processors the MPI use is OPENMPI/4.1.4 # On Intel processors the MPI use is OPENMPI/4.1.4
# the configure will generate a # the configure will generate a
# profile_mesonh-LXifort-R8I4-MNH-V5-6-1-MPIAUTO-O2 # profile_mesonh-LXifort-R8I4-MNH-V5-6-2-MPIAUTO-O2
# #
# - ssh irene-amd : for AMD , processors # - ssh irene-amd : for AMD , processors
# On AMD processors the MPI use is OPENMPI/4.1.4 # On AMD processors the MPI use is OPENMPI/4.1.4
# the configure will generate a # the configure will generate a
# profile_mesonh-LXifort-R8I4-MNH-V5-6-1-AMD-MPIAUTO-O2 # profile_mesonh-LXifort-R8I4-MNH-V5-6-2-AMD-MPIAUTO-O2
# #
# #
# At TGCC they use 'one login' for multi-project allocation . # At TGCC they use 'one login' for multi-project allocation .
...@@ -647,9 +647,9 @@ echo $CCCHOME ...@@ -647,9 +647,9 @@ echo $CCCHOME
# - install the PACKAGE in your ${CCCHOME} ( default 20Go of quota ) # - install the PACKAGE in your ${CCCHOME} ( default 20Go of quota )
# for example on Intel frontal # for example on Intel frontal
cd ${CCCHOME} cd ${CCCHOME}
cd MNH-V5-6-1/src cd MNH-V5-6-2/src
./configure ./configure
. ../conf/profile_mesonh-LXifort-R8I4-MNH-V5-6-1-MPIAUTO-O2 . ../conf/profile_mesonh-LXifort-R8I4-MNH-V5-6-2-MPIAUTO-O2
make -j16 |& tee error$XYZ make -j16 |& tee error$XYZ
make installmaster make installmaster
...@@ -689,14 +689,14 @@ sbatch job_make_examples_Atos_HPCF ...@@ -689,14 +689,14 @@ sbatch job_make_examples_Atos_HPCF
# - At Meteo-France DSI on belenos # - At Meteo-France DSI on belenos
# #
# to install the whole package on your "$HOME" directory # to install the whole package on your "$HOME" directory
# untar the file "MNH-V5-6-1.tar.gz" from its location : # untar the file "MNH-V5-6-2.tar.gz" from its location :
cd ~ cd ~
tar xvf $MESONH/MNH-V5-6-1.tar.gz tar xvf $MESONH/MNH-V5-6-2.tar.gz
# run the "./configure" command : # run the "./configure" command :
cd MNH-V5-6-1/src cd MNH-V5-6-2/src
./configure ./configure
# #
...@@ -795,7 +795,7 @@ scandollar ...@@ -795,7 +795,7 @@ scandollar
## OUTPUT :: ## OUTPUT ::
># read default config file :: ---> CONF_DOLLAR=/home/escj/DEV64/PACK-MNH-V5-6-1/conf/post/confdollar_aeropc_default ># read default config file :: ---> CONF_DOLLAR=/home/escj/DEV64/PACK-MNH-V5-6-2/conf/post/confdollar_aeropc_default
># >#
># read user config file :: ---> CONFIG=confdollar ># read user config file :: ---> CONFIG=confdollar
># >#
...@@ -817,7 +817,7 @@ scandollar 0* ...@@ -817,7 +817,7 @@ scandollar 0*
## OUTPUT :: ## OUTPUT ::
># >#
># read default config file :: ---> CONF_DOLLAR=/home/escj/DEV64/PACK-MNH-V5-6-1/conf/post/confdollar_aeropc_default ># read default config file :: ---> CONF_DOLLAR=/home/escj/DEV64/PACK-MNH-V5-6-2/conf/post/confdollar_aeropc_default
># >#
># read user config file :: ---> CONFIG=confdollar ># read user config file :: ---> CONFIG=confdollar
># >#
...@@ -891,22 +891,22 @@ cp -R 007_16janvier_scandollar /.../your_directory ...@@ -891,22 +891,22 @@ cp -R 007_16janvier_scandollar /.../your_directory
# #
# use this "profile_mesonh" : # use this "profile_mesonh" :
. /home/rech/mnh/rmnh007/DEV/MNH-V5-6-1/conf/profile_mesonh-SX8-MNH-V5-6-1-MPIAUTO-O4 . /home/rech/mnh/rmnh007/DEV/MNH-V5-6-2/conf/profile_mesonh-SX8-MNH-V5-6-2-MPIAUTO-O4
# And the examples are here ( link to my $WORKDIR in actually ) # And the examples are here ( link to my $WORKDIR in actually )
/home/rech/mnh/rmnh007/DEV/MNH-V5-6-1/MY_RUN/KTEST/007_16janvier_scandollar /home/rech/mnh/rmnh007/DEV/MNH-V5-6-2/MY_RUN/KTEST/007_16janvier_scandollar
# #
# On vargas # On vargas
# --------- # ---------
# use this "profile_mesonh" : # use this "profile_mesonh" :
. /workgpfs/rech/mnh/rmnh007/DEV/MNH-V5-6-1/conf/profile_mesonh-AIX64-MNH-V5-6-1-MPIAUTO-O2 . /workgpfs/rech/mnh/rmnh007/DEV/MNH-V5-6-2/conf/profile_mesonh-AIX64-MNH-V5-6-2-MPIAUTO-O2
# and examples here : # and examples here :
/workgpfs/rech/mnh/rmnh007/DEV/MNH-V5-6-1/MY_RUN/KTEST/007_16janvier_scandollar /workgpfs/rech/mnh/rmnh007/DEV/MNH-V5-6-2/MY_RUN/KTEST/007_16janvier_scandollar
# #
# - At CINES on JADE : # - At CINES on JADE :
...@@ -914,11 +914,11 @@ cp -R 007_16janvier_scandollar /.../your_directory ...@@ -914,11 +914,11 @@ cp -R 007_16janvier_scandollar /.../your_directory
# #
# use # use
. /work/escobar/DEV/MNH-V5-6-1/conf/profile_mesonh-LXifort-MNH-V5-6-1-MPIICE-O2 . /work/escobar/DEV/MNH-V5-6-2/conf/profile_mesonh-LXifort-MNH-V5-6-2-MPIICE-O2
# and the exemples # and the exemples
/work/escobar/DEV/MNH-V5-6-1/MY_RUN/KTEST/007_16janvier_scandollar /work/escobar/DEV/MNH-V5-6-2/MY_RUN/KTEST/007_16janvier_scandollar
# #
# - At ECMWF on cxa : # - At ECMWF on cxa :
...@@ -926,11 +926,11 @@ cp -R 007_16janvier_scandollar /.../your_directory ...@@ -926,11 +926,11 @@ cp -R 007_16janvier_scandollar /.../your_directory
# #
# use # use
. /c1a/ms_perm/au5/MNH-V5-6-1/conf/profile_mesonh-AIX64-MNH-V5-6-1-MPIAUTO-O2 . /c1a/ms_perm/au5/MNH-V5-6-2/conf/profile_mesonh-AIX64-MNH-V5-6-2-MPIAUTO-O2
# and the examples # and the examples
/c1a/ms_perm/au5/MNH-V5-6-1/MY_RUN/KTEST/007_16janvier_scandollar /c1a/ms_perm/au5/MNH-V5-6-2/MY_RUN/KTEST/007_16janvier_scandollar
# #
......
...@@ -44,9 +44,9 @@ IMPLICIT NONE ...@@ -44,9 +44,9 @@ IMPLICIT NONE
! !
NMNHVERSION(1)=5 NMNHVERSION(1)=5
NMNHVERSION(2)=6 NMNHVERSION(2)=6
NMNHVERSION(3)=1 NMNHVERSION(3)=2
NMASDEV=56 NMASDEV=56
NBUGFIX=1 NBUGFIX=2
CBIBUSER='' CBIBUSER=''
! !
END SUBROUTINE VERSION END SUBROUTINE VERSION
...@@ -9,9 +9,9 @@ if [ "x$XYZ" = "x" ] ...@@ -9,9 +9,9 @@ if [ "x$XYZ" = "x" ]
then then
# #
export VERSION_MASTER=${VERSION_MASTER:-MNH-V5-6} export VERSION_MASTER=${VERSION_MASTER:-MNH-V5-6}
export VERSION_BUG=${VERSION_BUG:-1} export VERSION_BUG=${VERSION_BUG:-2}
export VERSION_XYZ=${VERSION_XYZ:-${VERSION_MASTER}-${VERSION_BUG}${VER_OASIS:+-${VER_OASIS}}} export VERSION_XYZ=${VERSION_XYZ:-${VERSION_MASTER}-${VERSION_BUG}${VER_OASIS:+-${VER_OASIS}}}
export VERSION_DATE=${VERSION_DATE:-"05/09/2023"} export VERSION_DATE=${VERSION_DATE:-"28/11/2023"}
export VERSION_LIBAEC=${VERSION_LIBAEC:-"v1.0.6"} export VERSION_LIBAEC=${VERSION_LIBAEC:-"v1.0.6"}
export VERSION_HDF=${VERSION_HDF:-"1.14.0"} export VERSION_HDF=${VERSION_HDF:-"1.14.0"}
export VERSION_CDFC=${VERSION_CDFC:-"4.9.0"} export VERSION_CDFC=${VERSION_CDFC:-"4.9.0"}
......
...@@ -21,7 +21,7 @@ hostname ...@@ -21,7 +21,7 @@ hostname
unset MAKEFLAGS unset MAKEFLAGS
. ../conf/profile_mesonh-LXifort-R8I4-MNH-V5-6-1-MPIAUTO-O2 . ../conf/profile_mesonh-LXifort-R8I4-MNH-V5-6-2-MPIAUTO-O2
export MONORUN="Mpirun -np 1 " export MONORUN="Mpirun -np 1 "
export MPIRUN="Mpirun -np 2 " export MPIRUN="Mpirun -np 2 "
export POSTRUN="echo " export POSTRUN="echo "
......
...@@ -20,7 +20,7 @@ cd $LOADL_STEP_INITDIR ...@@ -20,7 +20,7 @@ cd $LOADL_STEP_INITDIR
unset MAKEFLAGS unset MAKEFLAGS
. ../conf/profile_mesonh-BG-R8I4-MNH-V5-6-1-MPIAUTO-O2 . ../conf/profile_mesonh-BG-R8I4-MNH-V5-6-2-MPIAUTO-O2
#001_2Drelief 002_3Drelief 003_KW78 004_Reunion 007_16janvier #001_2Drelief 002_3Drelief 003_KW78 004_Reunion 007_16janvier
......
...@@ -20,7 +20,7 @@ cd $LOADL_STEP_INITDIR ...@@ -20,7 +20,7 @@ cd $LOADL_STEP_INITDIR
unset MAKEFLAGS unset MAKEFLAGS
. ../conf/profile_mesonh-BGQ-R8I4-MNH-V5-6-1-MPIAUTO-O2NAN . ../conf/profile_mesonh-BGQ-R8I4-MNH-V5-6-2-MPIAUTO-O2NAN
set -x set -x
......
...@@ -21,7 +21,7 @@ hostname ...@@ -21,7 +21,7 @@ hostname
unset MAKEFLAGS unset MAKEFLAGS
. ../conf/profile_mesonh-LXifort-R8I4-MNH-V5-6-1-MPIINTEL-O3 . ../conf/profile_mesonh-LXifort-R8I4-MNH-V5-6-2-MPIINTEL-O3
export MONORUN="Mpirun -np 1 " export MONORUN="Mpirun -np 1 "
export MPIRUN="Mpirun -np 2 " export MPIRUN="Mpirun -np 2 "
export POSTRUN="time " export POSTRUN="time "
......
...@@ -20,7 +20,7 @@ hostname ...@@ -20,7 +20,7 @@ hostname
unset MAKEFLAGS unset MAKEFLAGS
. ../conf/profile_mesonh-LXifort-R8I4-MNH-V5-6-1-MPIAUTO-O3 . ../conf/profile_mesonh-LXifort-R8I4-MNH-V5-6-2-MPIAUTO-O3
export MONORUN="Mpirun -np 1 " export MONORUN="Mpirun -np 1 "
export MPIRUN="Mpirun -np 2 " export MPIRUN="Mpirun -np 2 "
export POSTRUN="echo " export POSTRUN="echo "
......
...@@ -23,7 +23,7 @@ hostname ...@@ -23,7 +23,7 @@ hostname
unset MAKEFLAGS unset MAKEFLAGS
. ../conf/profile_mesonh-LXifort-R8I4-MNH-V5-6-1-MPIAUTO-O2 . ../conf/profile_mesonh-LXifort-R8I4-MNH-V5-6-2-MPIAUTO-O2
set -x set -x
......
...@@ -22,7 +22,7 @@ hostname ...@@ -22,7 +22,7 @@ hostname
unset MAKEFLAGS unset MAKEFLAGS
. ../conf/profile_mesonh-LXifort-R8I4-MNH-V5-6-1-AMD-MPIAUTO-O2 . ../conf/profile_mesonh-LXifort-R8I4-MNH-V5-6-2-AMD-MPIAUTO-O2
set -x set -x
......
...@@ -20,7 +20,7 @@ hostname ...@@ -20,7 +20,7 @@ hostname
unset MAKEFLAGS unset MAKEFLAGS
. ../conf/profile_mesonh-LXifort-R8I4-MNH-V5-6-1-MPIINTEL-O2 . ../conf/profile_mesonh-LXifort-R8I4-MNH-V5-6-2-MPIINTEL-O2
export MONORUN="Mpirun -prepend-rank -np 1 " export MONORUN="Mpirun -prepend-rank -np 1 "
export MPIRUN="Mpirun -prepend-rank -np 4 " export MPIRUN="Mpirun -prepend-rank -np 4 "
export POSTRUN="echo " export POSTRUN="echo "
......
...@@ -19,7 +19,7 @@ hostname ...@@ -19,7 +19,7 @@ hostname
unset MAKEFLAGS unset MAKEFLAGS
. ../conf/profile_mesonh-LXifort-R8I4-MNH-V5-6-1-MPIINTEL-O2 . ../conf/profile_mesonh-LXifort-R8I4-MNH-V5-6-2-MPIINTEL-O2
export MONORUN="mpirun -prepend-rank -np 1 " export MONORUN="mpirun -prepend-rank -np 1 "
export MPIRUN="mpirun -prepend-rank -np 4 " export MPIRUN="mpirun -prepend-rank -np 4 "
export POSTRUN="echo " export POSTRUN="echo "
......
...@@ -30,7 +30,7 @@ cd ${PBS_O_WORKDIR} ...@@ -30,7 +30,7 @@ cd ${PBS_O_WORKDIR}
ARCH=LXifort ARCH=LXifort
#ARCH=LXcray #ARCH=LXcray
. ../conf/profile_mesonh-${ARCH}-R8I4-MNH-V5-6-1-MPICRAY-O2 . ../conf/profile_mesonh-${ARCH}-R8I4-MNH-V5-6-2-MPICRAY-O2
export MONORUN="aprun -n 1 " export MONORUN="aprun -n 1 "
......
...@@ -21,7 +21,7 @@ hostname ...@@ -21,7 +21,7 @@ hostname
unset MAKEFLAGS unset MAKEFLAGS
. ../conf/profile_mesonh-LXcray-R8I4-MNH-V5-6-1-MPICRAY-O2 . ../conf/profile_mesonh-LXcray-R8I4-MNH-V5-6-2-MPICRAY-O2
export MONORUN="Exec srun -l -n 1 --export=ALL" export MONORUN="Exec srun -l -n 1 --export=ALL"
export MPIRUN="Exec srun -l -n 4 --export=ALL" export MPIRUN="Exec srun -l -n 4 --export=ALL"
export POSTRUN="echo " export POSTRUN="echo "
......
...@@ -21,7 +21,7 @@ hostname ...@@ -21,7 +21,7 @@ hostname
unset MAKEFLAGS unset MAKEFLAGS
. ../conf/profile_mesonh-LXifort-R8I4-MNH-V5-6-1-MPIINTEL-O2 . ../conf/profile_mesonh-LXifort-R8I4-MNH-V5-6-2-MPIINTEL-O2
export MONORUN="Exec srun -l -n 1 --export=ALL numabind_core_slurm" export MONORUN="Exec srun -l -n 1 --export=ALL numabind_core_slurm"
export MPIRUN="Exec srun -l -n 4 --export=ALL numabind_core_slurm" export MPIRUN="Exec srun -l -n 4 --export=ALL numabind_core_slurm"
export POSTRUN="echo " export POSTRUN="echo "
......
...@@ -21,7 +21,7 @@ cd $LOADL_STEP_INITDIR ...@@ -21,7 +21,7 @@ cd $LOADL_STEP_INITDIR
unset MAKEFLAGS unset MAKEFLAGS
. ../conf/profile_mesonh-LXifort-R8I4-MNH-V5-6-1-MPIINTEL-O2 . ../conf/profile_mesonh-LXifort-R8I4-MNH-V5-6-2-MPIINTEL-O2
# Pour avoir l'echo des commandes # Pour avoir l'echo des commandes
set -x set -x
......
...@@ -26,7 +26,7 @@ cd $LOADL_STEP_INITDIR ...@@ -26,7 +26,7 @@ cd $LOADL_STEP_INITDIR
unset MAKEFLAGS unset MAKEFLAGS
. ../conf/profile_mesonh-AIX64-R8I4-MNH-V5-6-1-MPIAUTO-O2 . ../conf/profile_mesonh-AIX64-R8I4-MNH-V5-6-2-MPIAUTO-O2
#001_2Drelief 002_3Drelief 003_KW78 004_Reunion 007_16janvier #001_2Drelief 002_3Drelief 003_KW78 004_Reunion 007_16janvier
......
...@@ -20,7 +20,7 @@ unset MAKEFLAGS ...@@ -20,7 +20,7 @@ unset MAKEFLAGS
[ -d $PBS_O_WORKDIR ] && cd $PBS_O_WORKDIR [ -d $PBS_O_WORKDIR ] && cd $PBS_O_WORKDIR
# #
. ../conf/profile_mesonh-SX8-R8I4-MNH-V5-6-1-MPIAUTO-O4 . ../conf/profile_mesonh-SX8-R8I4-MNH-V5-6-2-MPIAUTO-O4
export MONORUN="Mpirun -np 1 " export MONORUN="Mpirun -np 1 "
export MPIRUN="Mpirun -np 2 " export MPIRUN="Mpirun -np 2 "
......
...@@ -21,7 +21,7 @@ unset MAKEFLAGS ...@@ -21,7 +21,7 @@ unset MAKEFLAGS
[ -d $PBS_O_WORKDIR ] && cd $PBS_O_WORKDIR [ -d $PBS_O_WORKDIR ] && cd $PBS_O_WORKDIR
# #
. ../conf/profile_mesonh-SX8-R8I4-MNH-V5-6-1-MPIAUTO-O2 . ../conf/profile_mesonh-SX8-R8I4-MNH-V5-6-2-MPIAUTO-O2
export MONORUN="Mpirun -np 1 " export MONORUN="Mpirun -np 1 "
export MPIRUN="Mpirun -np 2 " export MPIRUN="Mpirun -np 2 "
......
...@@ -36,7 +36,7 @@ cd $LOADL_STEP_INITDIR ...@@ -36,7 +36,7 @@ cd $LOADL_STEP_INITDIR
unset MAKEFLAGS unset MAKEFLAGS
. ../conf/profile_mesonh-AIX64-R8I4-MNH-V5-6-1-MPIAUTO-O2 . ../conf/profile_mesonh-AIX64-R8I4-MNH-V5-6-2-MPIAUTO-O2
ulimit -c 0 # pas de core ulimit -c 0 # pas de core
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment