Skip to content

Commit ca7a009

Browse files
author
Ben Prather
committed
Merge branch 'fix/papercuts' of github:afd-illinois/kharma into fix/papercuts
2 parents 369037b + 0911a82 commit ca7a009

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ shock_soln_*.txt
3232
.ptp-sync
3333
.vscode/
3434
.cache/
35+
*~
3536

3637
# C++ excludes
3738
# Build directory

machines/crux.sh

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
# ALCF: Crux (CPU machine, for testing)
3+
if [[ $HOST == *".crux.alcf.anl.gov" ]]; then
4+
HOST_ARCH=ZEN3
5+
6+
if [[ $ARGS == *"gcc"* ]]; then
7+
# untested, don't use this, the cray compilers are fine
8+
module load PrgEnv-gnu
9+
fi
10+
# Common modules
11+
# You'd think we'd load cmake but noooo Crux doesn't even ship it
12+
# Compile your own and ensure it's in PATH
13+
module load cray-fftw cray-hdf5-parallel
14+
15+
EXTRA_FLAGS="-DPARTHENON_DISABLE_HDF5_COMPRESSION=ON $EXTRA_FLAGS"
16+
fi

0 commit comments

Comments
 (0)