"...composable_kernel-1.git" did not exist on "500fa9951297c033a9c4c1d300b03895a46528d2"
Commit c27f88b5 authored by Bartlomiej Kocot's avatar Bartlomiej Kocot
Browse files

Update cmake files

parent f741895f
...@@ -420,6 +420,8 @@ IF(IS_DIRECTORY "${PROJECT_SOURCE_DIR}/library/src/tensor_operation_instance/gpu ...@@ -420,6 +420,8 @@ IF(IS_DIRECTORY "${PROJECT_SOURCE_DIR}/library/src/tensor_operation_instance/gpu
ENDIF() ENDIF()
ENDFOREACH() ENDFOREACH()
add_subdirectory(include/ck)
add_custom_target(instances DEPENDS utility;${CK_DEVICE_INSTANCES} SOURCES ${INSTANCE_FILES}) add_custom_target(instances DEPENDS utility;${CK_DEVICE_INSTANCES} SOURCES ${INSTANCE_FILES})
add_subdirectory(library) add_subdirectory(library)
......
add_executable(client_tensor_transform tensor_transform.cpp) add_executable(client_tensor_transform tensor_transform.cpp)
target_include_directories(client_tensor_transform INTERFACE composable_kernel::wrapper)
add_executable(client_tensor_transform_using_wrapper tensor_transform_using_wrapper.cpp) add_executable(client_tensor_transform_using_wrapper tensor_transform_using_wrapper.cpp)
target_include_directories(client_tensor_transform_using_wrapper INTERFACE composable_kernel::wrapper)
add_subdirectory(wrapper)
add_library(wrapper INTERFACE)
add_library(composable_kernel::wrapper ALIAS wrapper)
target_include_directories(wrapper INTERFACE
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}/ck>
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}/ck/utility>
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}/ck/tensor_description>
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}/ck/wrapper>
)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment