You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

Intel + openmpi


modules
[usbk@at1-11 WPS-master]$ module list

Currently Loaded Modules:
  1) intel/19.1.2   2) prgenv/intel   3) netcdf4/4.7.4   4) openmpi/4.0.5.2   5) jasper/2.0.14

export NETCDF=$NETCDF_DIR

CSH is not installed on TEMS. To execute CSH scripts one can use locally installed tcsh:

example
/perm/usxa/tems/apps/tcsh/6.22.03/bin/tcsh ./compile



WPS: 

In modules such as netcdf4 on TEMS, libraries are linked using environmental variables such as:

setenv("NETCDF4_LIB","-L/usr/local/apps/netcdf4/4.7.4/INTEL/19.1/lib -Wl,-rpath,/usr/local/apps/netcdf4/4.7.4/INTEL/19.1/lib -lnetcdff -lnetcdf_c++ -lnetcdf")

To make usage of this approach, some modification are needed to native configure* files.

In case of WPS-master/configure, following lines should be replaced:

configure
#$FC ${FFLAGS} fort_netcdf.f -o fort_netcdf -L${NETCDF}/lib $NETCDFF -lnetcdf > /dev/null 2>&1
 $FC ${FFLAGS} fort_netcdf.f -o fort_netcdf $NETCDF4_LIB > /dev/null 2>&1

#                       -I$(NETCDF)/include
                        $(NETCDF4_INCLUDE)

#                       -L$(NETCDF)/lib -lnetcdff -lnetcdf
                        $(NETCDF4_LIB)



After ./configure step, configure.wps has to be edited as well:

#COMPRESSION_LIBS    = -L/glade/u/home/wrfhelp/UNGRIB_LIBRARIES/lib -ljasper -lpng -lz
#COMPRESSION_INC     = -I/glade/u/home/wrfhelp/UNGRIB_LIBRARIES/include

COMPRESSION_LIBS    = $(JASPER_LIB) \
                      -L/usr/lib64 -lpng -lz
COMPRESSION_INC     = $(JASPER_INCLUDE) \
                      -I/usr/include



Intel + Intelmpi

modules
[usbk@at1-11 WPS-master_intelmpi]$ module list

Currently Loaded Modules:
  1) intel/19.1.2   2) prgenv/intel   3) netcdf4/4.7.4   4) jasper/2.0.14   5) intel-mpi/19.1.2

WPS:

configure.wps
SFC                 = ifort
SCC                 = icc
DM_FC               = mpiifort
DM_CC               = mpiicc
  • No labels