Versions Compared

Key

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

...

Panel
borderColor#9c9fb5
bgColor#fcfcfc
titleColor#fcfcfc
titleBGColor#021D61
borderStylesolid
titleSoftware and Modules


Excerpt


Expand
titleQ. Are any software modules loaded by default?


Panel
borderColor#07105b
bgColor#f6f6f6
titleColor#00084d
titleBGColor#d9dae5
borderStyledotted

Yes, when you start an interactive terminal session or submit a batch script, the modules ohpc, gnu8, openmpi3, and cmake are automatically loaded. If your code uses Intel compilers, you will want to manually unload gnu8 and openmpi3 to prevent conflicts.

The exception: If you are working in a terminal in an Open OnDemand interactive desktop session, nothing is loaded by default and you will need to manually load any necessary modules.



Expand
titleQ. How do I install this R package/Why can't I install this R package?


Panel
borderColor#07105b
bgColor#f6f6f6
titleColor#00084d
titleBGColor#d9dae5
borderStyledotted

R installations can sometimes be frustrating. We have instructions for how to set up a usable R environment, how to diagnose and troubleshoot problems, and steps to help with known troublesome packages documented in in our Using and Customizing R Packages section. 

You may also want to take a look under our Popular Packages section in the page mentioned above. This includes instructions for packages that are known to cause issues for users.



Expand
titleQ. How do I install Python packages?


Panel
borderColor#07105b
bgColor#f6f6f6
titleColor#00084d
titleBGColor#d9dae5
borderStyledotted
You can install python packages locally using either a virtual environment or a local conda environment. See our documentation on using Python for instructions on how to set these up.



Expand
titleQ. I've been using an older version of Singularity, why isn't available anymore?


Panel
borderColor#07105b
bgColor#f6f6f6
titleColor#00084d
titleBGColor#d9dae5
borderStyledotted
The current version of Singularity is 3.7.4.  Prior versions have been removed, only the latest one is considered secure.  Notify the consultants if you need help with transition to the current version. Singularity is installed on the operating systems of all compute nodes so does not need to be loaded with a module.



Expand
titleQ. What executables are available when I load a module?


Panel
borderColor#07105b
bgColor#f6f6f6
titleColor#00084d
titleBGColor#d9dae5
borderStyledotted

Load the module, find the path to the executable by checking the $PATH variable, then list the contents.  For example:

Code Block
languagebash
themeMidnight
module load lammps
echo $PATH
ls /opt/ohpc/pub/apps/lammps/3Mar20/bin
lmp_mpi




Expand
titleQ. Why am I getting "command: module not found"?


Panel
borderColor#07105b
bgColor#f6f6f6
titleColor#00084d
titleBGColor#d9dae5
borderStyledotted

There are a few different possibilities:

  • You are not in an interactive session. Modules are not available on the login nodes. You may request an interactive session by using the command interactive
  • Your shell is not set to bash. If this is the case, contact our consultants so that they can reset it for you.
  • You have modified or deleted your ~/.bashrc. If this is the case, open (if the file exists) or create and open (if the file is missing) the file .bashrc in your home directory and add the lines:

    Code Block
    languagebash
    themeMidnight
    if [ -f /etc/bashrc ]; then
            . /etc/bashrc
    fi




Expand
titleQ. How can I maximize my software performance on Puma?


Panel
borderColor#07105b
bgColor#f6f6f6
titleColor#00084d
titleBGColor#d9dae5
borderStyledotted

If you are able to compile your software you can take advantage of most of the AMD Zen architecture.

CompilerArch-SpecificArch-Favorable
GCC 9-march=znver2-mtune=znver2
LLVM 9-march=znver2-mtune=znver2

Neither of these compiler versions (GCC 9 or LLVM 9) is available on Puma so you will have to build that first.  If you use GCC 8.3 you can set znver1 instead.



Expand
titleQ. Can I use Windows applications on HPC?


Panel
borderColor#07105b
bgColor#f6f6f6
titleColor#00084d
titleBGColor#d9dae5
borderStyledotted

Unfortunately, Windows applications can't be run on HPC. However, AWS has been used successfully for Windows software with GPU needs. It’s easy to set up, cost effective, and very scalable. Amazon also has a cloud credit for research program available
https://aws.amazon.com/government-education/research-and-technical-computing/cloud-credit-for-research/ [aws.amazon.com]

You may also consider trying Jetstream2, a national resource where you can create and use Windows virtual machines. More information can be found here: https://jetstream-cloud.org/



Expand
titleQ. Is the Intel compiler faster than GCC on Puma?


Panel
borderColor#07105b
bgColor#f6f6f6
titleColor#00084d
titleBGColor#d9dae5
borderStyledotted

Intel compilers are optimized for Intel processors. There is some debate around the concept of unfair CPU dispatching in Intel compilers. By default, software on the HPC clusters is built with GCC (on Puma it is GCC 8.3).  This is in keeping with our preference for community software.



Expand
titleQ. How do I access Gaussian or Gaussview?


Panel
borderColor#07105b
bgColor#f6f6f6
titleColor#00084d
titleBGColor#d9dae5
borderStyledotted

You need to belong to a special group called g03.  You can request to be added by submitting a help ticket. This is a constraint in Gaussian that other modules do not have.



Expand
titleQ. How do I take advantage of the Distributed capability of Ansys?


Panel
borderColor#07105b
bgColor#f6f6f6
titleColor#00084d
titleBGColor#d9dae5
borderStyledotted

Ansys has the Distributed capability built in to increase performance. Ansys uses the Intel compiler and so uses Intel MPI.  By default, we load OpenMPI, so you will need to do this: 

Code Block
languagebash
themeMidnight
module unload gnu8 openmpi3
module load intel
module load ansys




Expand
titleQ. How do I access custom Python packages from an OOD Jupyter session?


Panel
borderColor#07105b
bgColor#f6f6f6
titleColor#00084d
titleBGColor#d9dae5
borderStyledotted

Instructions on accessing custom packages are under Accessing Custom Packages from a Jupyter Session in our documentation on Using and Installing Python & Python Packages.