Skip to content

Building and Running Devil Ray on LLNL HPC Systems

Cyrus Harrison edited this page Oct 11, 2019 · 8 revisions

Run these on Pascal:

git clone --recursive  ssh://[email protected]:7999/vis/devil_ray.git
# if this fails, you may need to setup ssh keys -- ask us for help on process
cd devil_ray
# make a directory to build in
mkdir build && cd build
# get newer cmake
module load cmake
# ask for a batch node
salloc -N 1
# (wait for job to be allocated)
# configure our build with pre-built dependencies
cmake -C /usr/workspace/wsb/hmc_19/tpls/pascal_openmp/[email protected] ../src
# build
make
# run tests (some may fail!)
make test

To enable logging and stats use the following during the cmake configure:

cmake -DENABLE_LOGGING=ON -DENABLE_STATS=ON -C /usr/workspace/wsb/hmc_19/tpls/pascal_openmp/[email protected] ../src
Clone this wiki locally