refactor(ggml-hip): 移除HIP版本检查限制

海光设备不再强制要求ROCM/HIP V6.1以上版本
This commit is contained in:
2026-01-16 14:26:01 +08:00
parent a2efec7ed6
commit 83db9c468e

View File

@@ -43,9 +43,10 @@ find_package(hip REQUIRED)
find_package(hipblas REQUIRED)
find_package(rocblas REQUIRED)
if (${hip_VERSION} VERSION_LESS 6.1)
message(FATAL_ERROR "At least ROCM/HIP V6.1 is required")
endif()
#
# if (${hip_VERSION} VERSION_LESS 6.1)
# message(FATAL_ERROR "At least ROCM/HIP V6.1 is required")
# endif()
message(STATUS "HIP and hipBLAS found")