Commit f5e4438c authored by Ville Pietilä's avatar Ville Pietilä
Browse files

Fix include paths.

parent 981a2c54
...@@ -14,10 +14,10 @@ set(hsa-runtime64_DIR /opt/rocm/lib/cmake/hsa-runtime64) ...@@ -14,10 +14,10 @@ set(hsa-runtime64_DIR /opt/rocm/lib/cmake/hsa-runtime64)
find_package(ROCM REQUIRED PATHS /opt/rocm) find_package(ROCM REQUIRED PATHS /opt/rocm)
find_package(hip REQUIRED PATHS /opt/rocm) find_package(hip REQUIRED PATHS /opt/rocm)
set(CK_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/../..)
include_directories( include_directories(
${PROJECT_SOURCE_DIR}/../include/ck ${CK_ROOT}/include
${PROJECT_SOURCE_DIR}/../include/ck/utility
${PROJECT_SOURCE_DIR}/../include/ck/host_utility
/opt/rocm/include /opt/rocm/include
) )
......
...@@ -4,8 +4,8 @@ ...@@ -4,8 +4,8 @@
#include <map> #include <map>
#include <queue> #include <queue>
#include "gtest/gtest.h" #include "gtest/gtest.h"
#include "/workspaces/composable_kernel/include/ck/ck.hpp" #include "ck/ck.hpp"
#include "/workspaces/composable_kernel/include/ck/utility/host_memory_allocator.hpp" #include "ck/utility/host_memory_allocator.hpp"
using namespace ck::memory; using namespace ck::memory;
......
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