diff --git a/configure b/configure index 6fa9aae7..e69eaa28 100755 --- a/configure +++ b/configure @@ -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." diff --git a/quick-cmake/QUICKCudaConfig.cmake b/quick-cmake/QUICKCudaConfig.cmake index e4341fb2..e3198732 100644 --- a/quick-cmake/QUICKCudaConfig.cmake +++ b/quick-cmake/QUICKCudaConfig.cmake @@ -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")