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
ENDIF()
ENDFOREACH()
add_subdirectory(include/ck)
add_custom_target(instances DEPENDS utility;${CK_DEVICE_INSTANCES} SOURCES ${INSTANCE_FILES})
add_subdirectory(library)
......
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)
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