Changes between Version 4 and Version 5 of cypress/ModuleCommand


Ignore:
Timestamp:
01/04/17 17:30:46 (8 years ago)
Author:
fuji
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • cypress/ModuleCommand

    v4 v5  
    8181
    8282
    83 === using $HOME/.modulerc ===
     83=== Using $HOME/.modulerc ===
    8484This file can be used to load or to define your own environment during each login. An example looks like this:
    8585
    8686{{{
    87 #%Module1.0
    88 module load matlab/R2013a
     87#%Module
     88module load intel-psxe/2016
    8989}}}
    9090
    91 A .modulerc begins with the magic cookie, '#%Module'. A version number may be placed after this string. The current version is 1.0.
     91A .modulerc begins with the magic cookie, '#%Module'.
    9292
    93 If you want to set .modulerc to work for both "sphynx" and "ares", it is better to set like:
     93==== Define your own module ====
     94Compiling software in a user directory then defining personal environment modules is useful when software one needs are not installed on Cypress, or the installed ones are not of the desired version.
    9495
    95 {{{
    96 #%Module1.0
    97 if { $HOSTNAME == "sphynx.ccs.tulane.edu" } {
    98  module load intel/12.1
    99  module load openmpi-intel-ib/1.6
    100  module load matlab/R2013a
    101 }
    102 if { $HOSTNAME == "cypress1" } {
    103  module load intel/12.0
    104  module load openmpi-intel-ib/1.5
    105 }
    106 }}}
    107 
     96 
    10897=== Next Section ===
    10998[[cypress/using|Job Submissions]]