
* rocm recipes updates for 4.5.0 * update to rocm recipes for 4.5.0 release * updates to the rocm recipes for rocm-4.5.0 release * fix style errors * update to rocm-validation-suite for rocm-4.5.0 release * bump up rccl recipe for rocm-4.5.0 * bump up version for rdc for rocm-4.5.0 * update miopengemm, miopen-opencl,rocm-opencl recipes for 4.5.0 release * bump up version for mivisiox for rocm-4.5.0 release * update the rocm-validation-suite recipe * no need to change the perl path for 4.5.0 * fix the build failure with the recent change made for hip package * modify checksum for the llvm-amdgpu for 4.5.0 * fix the build issue aftere recent changes made for enabling test * fix the build issue with 4.5.0 * add new recipe for hipsolver * address review comments
25 lines
896 B
Diff
25 lines
896 B
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index 1deb1ba..f2bbf30 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -117,6 +117,8 @@ include_directories(src)
|
|
include_directories(src/include)
|
|
include_directories(src/collectives)
|
|
include_directories(src/collectives/device)
|
|
+include_directories(${NUMACTL_DIR}/include)
|
|
+link_directories(${NUMACTL_DIR}/lib)
|
|
|
|
set(CU_SOURCES
|
|
src/collectives/device/all_reduce.cu
|
|
@@ -241,8 +243,8 @@ if("${HIP_COMPILER}" MATCHES "hcc")
|
|
endif()
|
|
endif()
|
|
|
|
-target_include_directories(rccl PRIVATE ${ROCM_PATH}/rocm_smi/include)
|
|
-target_link_libraries(rccl PRIVATE hip::device dl -lrocm_smi64 -L${ROCM_PATH}/rocm_smi/lib)
|
|
+target_include_directories(rccl PRIVATE ${ROCM_SMI_DIR}/include)
|
|
+target_link_libraries(rccl PRIVATE hip::device dl -lrocm_smi64 -L${ROCM_SMI_DIR}/lib)
|
|
target_link_libraries(rccl INTERFACE hip::host)
|
|
|
|
#Setup librccl.so version
|