Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
module swap PrgEnv-cray PrgEnv-intel
module load cray-netcdf cray-parallel-netcdf
module load flex/2.6.4 bison/3.0.4 jasper
export NETCDF=$NETCDF_DIR
export PNETCDF=$PARALLEL_NETCDF_DIR
export WRFIO_NCD_LARGE_FILE_SUPPORT=1
export WRF_CHEM=1
export WRF_KPP=1
export FLEX_LIB_DIR=${FLEX_DIR}/lib
export YACC="${BISON_DIR}/bin/yacc -d"
export JASPERLIB=${JASPER_DIR}/lib
export JASPERFINCJASPERINC=${JASPER_DIR}/include

Go to source code folder and run ./configure. For parallelization with pure MPI, choose option 50 (dm | distributed memory) and if you plan to use OpenMP for multithreading on node, choose 51 (dm+sm | distributed memory+shared memory). Here we are choosing 50:

...