Skip to content

installationHPC

Andrea Alfonsi - INL edited this page Jan 8, 2018 · 31 revisions

For FALCON (INL) users

The two modules need to be loaded:

[~]> module load pbs raven-devel-gcc

Then a regular installation can be done:

Clone RAVEN

[~]> mkdir projects
[~]> cd projects
[~/projects]> git clone https://github.com/idaholab/raven.git
[~/projects]> cd raven
[~/projects/raven]> git submodule init moose
[~/projects/raven]> git submodule update moose

Compiling RAVEN

[~/projects/raven]> make -j2 

Test RAVEN installation

[~/projects/raven]> ./run_tests -j2

A large number of tests are run in order to check that the installation step has been successful. At the end, a screen output is generated similar to the one below:

383 passed, 19 skipped, 0 pending, 0 failed

Update RAVEN

[~/projects]> cd raven
[~/projects/raven]> git pull
[~/projects/raven]> make -j2
[~/projects/raven]> ./run_tests -j2

For generic HPC system users

The following software will need to be installed (Warning: newer version may or may not work):

  1. numpy-1.11.0
  2. h5py-2.6.0
  3. scipy-0.17.1
  4. sklearn-0.17.1
  5. matplotlib-1.5.1
  6. hdf5-1.8.12
  7. Cython-0.18
  8. swig-2.0.12

These need to be installed. If they are not installed in the standard system locations, then PYTHONPATH and PATH may need to be adjusted.

See also Advanced Installation