Versions Compared

Key

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

...

The makeinc file must then be manually edited to uncomment an option line as described in the below diff:

...

Code Block
 make version
 make install

Sample build script on PSC:

Code Block
#!/bin/bash
source /jet/packages/oneapi/v2023.2.0<path>/compiler/2023.2.1/env/vars.sh
source /jet/packages/oneapi/v2023.2.0//<path>/mpi/2021.10.0/env/vars.sh
export MPIFC=mpiifort
export CC=mpiicc
export FC=$MPIFC

export HDF5_DIR=<path>
export NETCDF_DIR=<path>
export PATH=$NETCDF_DIR/bin:$PATH

autoreconf -f -i
./configure --prefix=$BASE/build-$MPI
# Modify makeinc file

make version
make install

...

  1. Compile, build and run the RegCM with the given below input and submit the results (standard output).

  2. Bonus task: change jx and iy parameters in the input file to find the maximum size you can fit into the memory of your cluster.

...