HPC/Module naming scheme 2016: Difference between revisions

From CNM Wiki
< HPC
Jump to navigation Jump to search
Line 67: Line 67:


=== Configure in .bashrc ===
=== Configure in .bashrc ===
To switch over to new-style module names on both CentOS releases you ''could'' continue making all your module choices in <code>~/.bashrc</code>.
To switch over to new-style module names ''entirely'', on both CentOS releases, you could continue using only <code>~/.bashrc</code>.
* Tell CentOS-5 nodes to offer the new-style module catalog instead of the old one. To do so, simply create an empty customization file:
To do this:
* Tell CentOS-5 nodes to offer you the new-style module catalog instead of the old one. To do so, simply create an empty customization file:
<source lang="bash">
<source lang="bash">
touch ~/.modules-2
touch ~/.modules-2
Line 85: Line 86:


=== Configure in dedicated files ===
=== Configure in dedicated files ===
It is perhaps cleaner to perform the module selection in files dedicated for each CentOS release, so that you can better address possible incompatibilities.
It is perhaps cleaner to perform the module selection in files dedicated for each CentOS release,
To migrate your existing configuration:
so that you can make adjustments independently.
* Extract and copy your previous module selections into a conspicuously named but otherwise unused files:
 
To migrate your existing configuration, manage the following files:
<pre>
.bashrc
.modules-1
.modules-2
</pre>
Use a helper application to get you started:
<source lang="bash">
<source lang="bash">
cd      # Go to home directory
modules-migrate
grep -C 1  module .bashrc > .modules-1.inactive
</source>
: The <code>grep -C</code> option includes the given number of lines of ''context'' before and after lines matching the search expression.
* Clean up errant lines that the ''grep'' command above might have included, such as separators <code>--</code> and conditionals (like <code>if</code>).
<source lang="bash">
vi .modules-1.inactive
# or:
nano .modules-1.inactive
</source>
* Duplicate the file.
* Adapt contents to new module names, as shown for <code>.bashrc</code> in the previous section.
<source lang="bash">
cp .modules-1.inactive .modules-2.inactive
vi .modules-2.inactive
# or:
nano .modules-2.inactive
</source>
: Apply the changes shown in the [[#Rules]] section.
* Edit <code>~/.bashrc</code> and remove all lines with <code>module</code> commands.
<source lang="bash">
vi .bashrc
</source>
* Test.
<source lang="bash">
bash -l    # open a sub-shell (option is lowercase L)
module list
exit        # leave the sub-shell
</source>
</source>


Here is an example of what you might see:
$ modules-migrate 
This application will help you adapt your environment-modules customizations to
Carbon's naming scheme updated for 2016.
Your module commands will be moved from .bashrc into files .modules-1 and .modules-2,
so that a node's operating system sees only module names in the appropriate
scheme.
The file text manipulation done here is fairly basic. You will have
opportunities to review and edit your changes.
'''Continue? [Y/n] '''y
======================================================================
diff of changes from .bashrc:
======================================================================
19,21c19,21
< module load vasp5
< module load g09/D.01.x86_64-2
< module load GaussView
---
> # module load vasp5
> # module load g09/D.01.x86_64-2
> # module load GaussView
'''Accept changes in .bashrc? [Y/n] '''y
Putting in place ...
`.bashrc.inactive' -> `.bashrc'
Opening text editor for .modules-1.inactive .modules-2.inactive ...
'''Continue? [Y/n] '''y
: (editor session omitted.)
~
~
~
======================================================================
Review: "module" lines in new files:                                                                                                                ======================================================================
==> .modules-1.inactive <==
# Carbon modules initialization for v1-style module names, used on CentOS-5.
# To stop using v1-style modules, remove this file.
#
# Initially extracted from .bashrc by modules-migrate .
#
# This file is in TCL syntax.
module load vasp5
module load g09/D.01.x86_64-2
module load GaussView
# vim:syntax=tcl:
==> .modules-2.inactive <==
# Carbon modules initialization for v2-style module names, used on CentOS-6.
# Also used on CentOS-5 if .modules-1 does not exist.
#
# Initially extracted from .bashrc by modules-migrate .
#
# This file is in TCL syntax.
module load vasp5
module load gaussian/09/D.01.x86_64-2
module load gaussview
# vim:syntax=tcl:
======================================================================
'''Accept changes (a), Edit (e), or Quit (q)? '''a
Renaming files ...
`.modules-1.inactive' -> `.modules-1'
`.modules-2.inactive' -> `.modules-2'
Done.
<!--
=== Differentiate module selection by OS release ===
=== Differentiate module selection by OS release ===
If you encounter difficulties with making your module selection work simultaneously for CentOS-5 and CentOS-6, use ''separate'' configurations instead.
If you encounter difficulties with making your module selection work simultaneously for CentOS-5 and CentOS-6, use ''separate'' configurations instead.
<!--
 
# Move all your previous module commands from <code>.bashrc</code> to <code>~/.modules-1</code>, where they will apply only on CentOS-5.
# Move all your previous module commands from <code>.bashrc</code> to <code>~/.modules-1</code>, where they will apply only on CentOS-5.
# Place all your module selections for CentOS-6 in <code>~/.modules-2</code>. Get started using the contents of the .*-1 version.
# Place all your module selections for CentOS-6 in <code>~/.modules-2</code>. Get started using the contents of the .*-1 version.
-->
-->
* Re-activate the older module selection.
<source lang="bash">
cd      # Go to home directory
mv .modules-1.inactive .modules-1
</source>
* Clean up errant lines:
<source lang="bash">
vi .modules-1
# or:
nano .modules-1
</source>
* Test – same as in [[#Configure in dedicated files|previous section]].
* Test – same as in [[#Configure in dedicated files|previous section]].

Revision as of 19:10, February 17, 2016

Configuration files used

You have files:
.bashrc and …
Remark CentOS-5 uses: CentOS-6 uses:
files module names files module names
Starting situation. .bashrc only version 1 .bashrc only version 2
.modules-2 Switch over, recommended. .modules-2 and .bashrc version 2 .modules-2 and .bashrc
.modules-1 Only recommended during transition. .modules-1 and .bashrc version 1 .bashrc only
.modules-1 .modules-2 For advanced users. .modules-1 and .bashrc version 1 .modules-2 and .bashrc

New-style module names

You may need to adapt the module names that you placed in your shell startup and job files to the new more hierarchical scheme. For most modules, with exceptions show below, the leading name component (the part before any "/") is the same in the old and new naming schemes. What always differs are the name parts after the first slash.

Name change rules

  • To use the latest or automatically selected version of a package, remove version numbers from old-style module names of the formpackagename/version, leaving only packagename. This is the recommended approach, as you will automatically benefit from future updates and maintenance builds.
  • To insist on a specific version for a package in new style names:
    • Inspect the available flavors and versions (some older modules were not migrated):
      module avail packagename.
    • Choose the new-style name up to the desired specificity. You may leave out trailing name or directory parts.
      For instance, instead of vasp5/5.3/openmpi-1.4/intel/5.3.3p3-mkl-3 you may write vasp5/5.3/openmpi-1.4 or vasp5/5.3, letting the system choose the versions for MPI and compiler that are chosen as defaults at a given time.

Renamed modules

For the following modules the newer naming convention allowed for and thus uses more consistent names:

OLD		NEW
-------------------------------------
asap3		asap/3

ase2		ase/2
ase3		ase/3

g09		gaussian/09
GaussView	gaussview  (lowercase)
The modules fftw3 and vasp5 did not change name due to more entrenched usage in the package itself, Unix group names, and compilation dependencies.

Determining default module versions

The module avail command under CentOS-6 no longer includes the marker "(default)" when one has been set in a .version file. I am not sure if this is a bug or by design, but the change certainly makes the output more consistent.

To determine which module will be loaded when an abbreviated name is used, I recommend to inspect the first relevant line in the output of one of these commands:

module show name
module help name

Customizing module selection by OS release

Configure in .bashrc

To switch over to new-style module names entirely, on both CentOS releases, you could continue using only ~/.bashrc. To do this:

  • Tell CentOS-5 nodes to offer you the new-style module catalog instead of the old one. To do so, simply create an empty customization file:
touch ~/.modules-2
vi .bashrc
# or:
nano .bashrc
Use a text editor of your choice, such as nano or vi.

Configure in dedicated files

It is perhaps cleaner to perform the module selection in files dedicated for each CentOS release, so that you can make adjustments independently.

To migrate your existing configuration, manage the following files:

.bashrc
.modules-1
.modules-2

Use a helper application to get you started:

modules-migrate

Here is an example of what you might see:

$ modules-migrate  

This application will help you adapt your environment-modules customizations to
Carbon's naming scheme updated for 2016.

Your module commands will be moved from .bashrc into files .modules-1 and .modules-2,
so that a node's operating system sees only module names in the appropriate
scheme.

The file text manipulation done here is fairly basic. You will have
opportunities to review and edit your changes.

Continue? [Y/n] y
======================================================================
diff of changes from .bashrc:
======================================================================

19,21c19,21
< module load vasp5
< module load g09/D.01.x86_64-2
< module load GaussView
---
> #	module load vasp5
> #	module load g09/D.01.x86_64-2
> #	module load GaussView
Accept changes in .bashrc? [Y/n] y
Putting in place ...
`.bashrc.inactive' -> `.bashrc'

Opening text editor for .modules-1.inactive .modules-2.inactive ...
Continue? [Y/n] y
(editor session omitted.)
~
~
~
======================================================================
Review: "module" lines in new files:                                                                                                                 ======================================================================

==> .modules-1.inactive <==
# Carbon modules initialization for v1-style module names, used on CentOS-5.
# To stop using v1-style modules, remove this file.
#
# Initially extracted from .bashrc by modules-migrate .
#
# This file is in TCL syntax.

module load vasp5
module load g09/D.01.x86_64-2
module load GaussView

# vim:syntax=tcl:

==> .modules-2.inactive <==
# Carbon modules initialization for v2-style module names, used on CentOS-6.
# Also used on CentOS-5 if .modules-1 does not exist.
#
# Initially extracted from .bashrc by modules-migrate .
#
# This file is in TCL syntax.

module load vasp5
module load gaussian/09/D.01.x86_64-2
module load gaussview

# vim:syntax=tcl:
======================================================================
Accept changes (a), Edit (e), or Quit (q)? a
Renaming files ...
`.modules-1.inactive' -> `.modules-1'
`.modules-2.inactive' -> `.modules-2'
Done.