Skip to content

Building on Lassen

Karl W. Schulz edited this page Jul 7, 2021 · 8 revisions

Quick and dirty build example on Lassen

  1. One time only, make sure git lfs is enabled by running git-lfs install

CPU/gcc variant build

Setup modules environment:

ml swap xl gcc/8.3.1
# ml petsc

Setup 3rd party s/w pointers:

# shared s/w location where missing 3rd party libs are installed
export SW_HOME=/usr/workspace/utaustin/software/lassen

# install of bats used for regression tests
export PATH=$SW_HOME/bats-1.3.0/bin:$PATH

# setup modulepath 
export MODULEPATH=$SW_HOME/modules/gcc:$MODULEPATH

module load grvy mfem hypre metis

Build tps and quick sanity check

./bootstrap
./configure
 make check
Clone this wiki locally