Versions Compared

Key

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

...

Looking for Modules: module spider

Info
  • Remember: module avail only shows what is available to be loaded with respect to your current environment and what you currently have loaded.

  • It does not show you everything.

Code Block
[]$ module spider openmpi
----------------------------------------------------------------------------
  openmpi: openmpi/4.1.6
----------------------------------------------------------------------------
     Other possible modules matches:
        nvhpc-openmpi3
     You will need to load all module(s) on any one of the lines below before the "openmpi/4.1.6" module is available to load.
       arcc/1.0  gcc/13.2.0
...

...

Module load/spider: Dependencies

...

Code Block
[]$ which mpicc
/apps/u/opt/gcc/13.2.0/openmpi/4.1.6/bin/mpicc

[]$ mpicc --version
gcc (Spack GCC) 13.2.0
Copyright (C) 2023 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

...

What Do

...

You Notice?

Info

After loading openmpi/4.1.6 what do we notice about what is now loaded and available?

...

Code Block
[]$ module spider python/3.10.6
[]$ module spider python/3.12.0
...
    You will need to load all module(s) on any one of the lines below before the "python/3.12.0" module is available to load.
      arcc/1.0  gcc/13.2.0
      arcc/1.0  gcc/14.2.0
...      
Info

The python/2 module has no dependencies, can can be loaded straight away:

...