We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 369037b + 0911a82 commit ca7a009Copy full SHA for ca7a009
.gitignore
@@ -32,6 +32,7 @@ shock_soln_*.txt
32
.ptp-sync
33
.vscode/
34
.cache/
35
+*~
36
37
# C++ excludes
38
# Build directory
machines/crux.sh
@@ -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