You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.4 KiB
45 lines
1.4 KiB
6 years ago
|
if (NOT WITH_AMD_GPU)
|
||
|
return()
|
||
|
endif()
|
||
|
|
||
|
# rocprim is "ROCm Parallel Primitives" for short.
|
||
|
# It is a header-only library providing HIP and HC parallel primitives
|
||
|
# for developing performant GPU-accelerated code on AMD ROCm platform.
|
||
|
|
||
|
if("x${HCC_HOME}" STREQUAL "x")
|
||
|
set(HCC_HOME "/opt/rocm/hcc")
|
||
|
endif()
|
||
|
|
||
|
INCLUDE(ExternalProject)
|
||
|
|
||
|
SET(ROCPRIM_SOURCE_DIR ${THIRD_PARTY_PATH}/rocprim)
|
||
|
SET(ROCPRIM_INSTALL_DIR ${THIRD_PARTY_PATH}/install/rocprim)
|
||
|
SET(ROCPRIM_INCLUDE_DIR ${ROCPRIM_INSTALL_DIR}/include)
|
||
|
|
||
|
ExternalProject_Add(
|
||
|
extern_rocprim
|
||
|
GIT_REPOSITORY "https://github.com/ROCmSoftwarePlatform/rocPRIM.git"
|
||
|
GIT_TAG 5bd41b96ab8d8343330fb2c3e1b96775bde3b3fc
|
||
|
PREFIX ${ROCPRIM_SOURCE_DIR}
|
||
|
UPDATE_COMMAND ""
|
||
|
CMAKE_ARGS -DCMAKE_CXX_COMPILER=${HCC_HOME}/bin/hcc
|
||
|
CMAKE_ARGS -DONLY_INSTALL=ON
|
||
|
CMAKE_ARGS -DBUILD_TEST=OFF
|
||
|
CMAKE_ARGS -DCMAKE_INSTALL_PREFIX=${ROCPRIM_INSTALL_DIR}
|
||
|
|
||
|
INSTALL_DIR ${ROCPRIM_INSTALL_DIR}
|
||
|
${EXTERNAL_PROJECT_LOG_ARGS}
|
||
|
)
|
||
|
|
||
|
INCLUDE_DIRECTORIES(${ROCPRIM_INCLUDE_DIR})
|
||
|
|
||
|
if (${CMAKE_VERSION} VERSION_LESS "3.3.0")
|
||
|
set(dummyfile ${CMAKE_CURRENT_BINARY_DIR}/rocprim_dummy.c)
|
||
|
file(WRITE ${dummyfile} "const char *dummy_rocprim = \"${dummyfile}\";")
|
||
|
add_library(rocprim STATIC ${dummyfile})
|
||
|
else()
|
||
|
add_library(rocprim INTERFACE)
|
||
|
endif()
|
||
|
|
||
|
add_dependencies(rocprim extern_rocprim)
|