Merge branch 'migx-jit-lib' of https://github.com/ROCmSoftwarePlatform/composable_kernel into migx-jit-lib

This commit is contained in:
Alan Turner
2023-06-06 08:57:56 -07:00
2 changed files with 7 additions and 1 deletions

View File

@@ -7,5 +7,10 @@ foreach(_comp ${composable_kernel_FIND_COMPONENTS})
set(composable_kernel_FOUND False)
set(composable_kernel_NOT_FOUND_MESSAGE "Unsupported component: ${_comp}")
endif()
include("${CMAKE_CURRENT_LIST_DIR}/composable_kernel${_comp}Targets.cmake")
if(EXISTS "${CMAKE_CURRENT_LIST_DIR}/composable_kernel${_comp}Targets.cmake")
include("${CMAKE_CURRENT_LIST_DIR}/composable_kernel${_comp}Targets.cmake")
else()
set(composable_kernel_FOUND False)
set(composable_kernel_NOT_FOUND_MESSAGE "Unsupported component: ${_comp}")
endif()
endforeach()

View File

@@ -1,6 +1,7 @@
#include "ck/host/common.hpp"
#include "ck_headers.hpp"
#include <stdexcept>
namespace ck {
namespace host {