Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doc: Frontier Update (Feb 18, 2025) #5695

Open
wants to merge 2 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Tools/machines/frontier-olcf/frontier_warpx.profile.example
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ if [ -z ${proj-} ]; then echo "WARNING: The 'proj' variable is not yet set in yo
# required dependencies
module load cmake/3.27.9
module load craype-accel-amd-gfx90a
module load rocm/5.7.1
module load cray-mpich/8.1.28
module load cce/17.0.0 # must be loaded after rocm
module load rocm/6.2.4
module load cray-mpich/8.1.31
module load cce/18.0.1 # must be loaded after rocm
# https://docs.olcf.ornl.gov/systems/frontier_user_guide.html#compatible-compiler-rocm-toolchain-versions

# Fix for OpenMP Runtime (OLCFHELP-21543)
Expand Down
7 changes: 2 additions & 5 deletions Tools/machines/frontier-olcf/install_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,18 +87,15 @@ python3 -m pip install --upgrade build
python3 -m pip install --upgrade packaging
python3 -m pip install --upgrade wheel
python3 -m pip install --upgrade setuptools
# cupy needs an older Cython
# https://github.com/cupy/cupy/issues/4610
python3 -m pip install --upgrade "cython<3.0"
python3 -m pip install --upgrade "cython>=3.0"
# cupy for ROCm
# https://docs.cupy.dev/en/stable/install.html#building-cupy-for-rocm-from-source
# https://github.com/cupy/cupy/issues/7830
CC=cc CXX=CC \
CUPY_INSTALL_USE_HIP=1 \
ROCM_HOME=${ROCM_PATH} \
HCC_AMDGPU_TARGET=${AMREX_AMD_ARCH} \
python3 -m pip install -v cupy
python3 -m pip install --upgrade "cython>=3.0" # for latest mpi4py and everything else
python3 -m pip install -v git+https://github.com/cupy/cupy.git@e669b994f976565bf2da4b1f82de51e10b58fbe1
python3 -m pip install --upgrade numpy
python3 -m pip install --upgrade h5py
python3 -m pip install --upgrade pandas
Expand Down
Loading