You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am going to put my notes on building/running on Venado here.
Grace-Grace Superchip Nodes
These were pretty easy to build for:
module load cray-mpich cray-hdf5-parallel
cmake -DPARTHENON_DISABLE_HDF5_COMPRESSION=ON -DPARTHENON_ENABLE_PYTHON_MODULE_CHECK=OFF ..
make -j20
There is a bug in cray-mpich so to run you must export
export MPICH_MALLOC_FALLBACK=1
# note CMA doesn't work here. NONE is required.export MPICH_SMP_SINGLE_COPY_MODE=NONE
But then you can run. I see about 5e7 zone-cycles per node second with pure MPI without doing any thought or optimization.
Grace-Hopper Chips
These require cuda toolkit. PrgEnv-cray and PrgEnv-gnu both work. However, I needed to change the version of Kokkos to 4.2.01. In external/Kokkos, git checkout 4.2.01. Then:
I am going to put my notes on building/running on Venado here.
Grace-Grace Superchip Nodes
These were pretty easy to build for:
There is a bug in cray-mpich so to run you must export
But then you can run. I see about 5e7 zone-cycles per node second with pure MPI without doing any thought or optimization.
Grace-Hopper Chips
These require cuda toolkit.
PrgEnv-cray
andPrgEnv-gnu
both work. However, I needed to change the version of Kokkos to4.2.01
. Inexternal/Kokkos
,git checkout 4.2.01
. Then:and then
The code runs on single node with MPI. Have not yet checked multi-node or performance.
The text was updated successfully, but these errors were encountered: