Versions Compared

Key

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

...

Code Block
which mpiexec

You should see:

Code Block
/fsx/itel/compilers_and_libraries_2020.0.166/linux/mpi/intel64/bin/mpiexec

Setting the Path for the OpenMP Runtime libraries

OpenMP requires shared runtime libraries that are accessed by each thread. These .so libraries are not shipped with the MPI distribution. They are available in the Cluster_Distribution folder under intel64_lin

To make these .so libraries available at run time you need to modify the LD_LIBRARY_PATH. This is best accomplished by appending the .bashrc file. Simply add:

Code Block
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/fsx/Cluster_Distribution/intel64_lin

Remember to source the .bashrc

Verify the LD_LIBRARY_PATH was modified

Code Block
echo $LD_LIBRARY_PATH

You should see the /fsx/Cluster_Distribution/intel64_lin at the end of your path

Running EFDC+ from the Command Line on Cluster Systems

...