Skip to content

Building and Running Devil Ray on LLNL HPC Systems

Ben Baral edited this page Sep 27, 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
# 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
Clone this wiki locally