Skip to content

Commit

Permalink
Merge pull request #351 from ohearnk/build-updates-disable-hip
Browse files Browse the repository at this point in the history
Disable support for HIP and MPI+HIP builds
  • Loading branch information
agoetz committed Mar 21, 2024
2 parents a15d07c + 8140d00 commit 1025d42
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -1139,6 +1139,10 @@ set_uspec_hip_arch(){
}

if [ "$hip" = 'yes' ] || [ "$hipmpi" = 'yes' ]; then
echo "Error: HIP support is currently unavailable in this QUICK release. "
echo " Support will be added back in a future release. "
exit 1

if [ -z "$ROCM_PATH" ]; then
echo "Error: ROCM_PATH environment variable is not set."
echo "Please make sure ROCm toolkit is loaded."
Expand Down
2 changes: 2 additions & 0 deletions quick-cmake/QUICKCudaConfig.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,8 @@ if(CUDA)
endif()

if(HIP)
# HIP builds currently unavailable (TODO: fix post release)
message(FATAL_ERROR "Error: HIP support is currently unavailable in this QUICK release. Support will be added back in a future release.")

set(QUICK_GPU_PLATFORM "HIP")
set(QUICK_GPU_TARGET_NAME "hip")
Expand Down

0 comments on commit 1025d42

Please sign in to comment.