Skip to content
Snippets Groups Projects
Commit bbeee880 authored by Yifan Zhao's avatar Yifan Zhao
Browse files

fixed include path for approxhpvm.py

parent 03e97f14
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,11 @@ configure_file( ...@@ -22,7 +22,11 @@ configure_file(
) )
# -- Default include directories # -- Default include directories
set(INCLUDES ./tensor_runtime/include ${CMAKE_CURRENT_BINARY_DIR}/tensor_runtime/include) set(
INCLUDES
./tensor_runtime/include ${CMAKE_CURRENT_BINARY_DIR}/tensor_runtime/include
${CMAKE_CUDA_TOOLKIT_INCLUDE_DIRECTORIES} ${CUDNN_INCLUDE_PATH}
)
# Build gpu_profiler and soc_simulator (dependencies) # Build gpu_profiler and soc_simulator (dependencies)
add_library(gpu_profiler SHARED gpu_profiler/profiler.cpp) add_library(gpu_profiler SHARED gpu_profiler/profiler.cpp)
...@@ -163,7 +167,7 @@ if(CLANG_NAME) ...@@ -163,7 +167,7 @@ if(CLANG_NAME)
message(STATUS "Creating tensor_runtime.ll in ${TENSOR_RT_LL_PREFIX}") message(STATUS "Creating tensor_runtime.ll in ${TENSOR_RT_LL_PREFIX}")
# Manually add cuda includes because add_custom_command doesn't handle them # Manually add cuda includes because add_custom_command doesn't handle them
# (unlike add_library which has CUDA-lang support). # (unlike add_library which has CUDA-lang support).
foreach(dir ${INCLUDES} ${CMAKE_CUDA_TOOLKIT_INCLUDE_DIRECTORIES} ${CUDNN_INCLUDE_PATH}) foreach(dir ${INCLUDES})
list(APPEND INCLUDE_COMPILER_STRINGS "-I${dir}") list(APPEND INCLUDE_COMPILER_STRINGS "-I${dir}")
endforeach() endforeach()
add_custom_command( add_custom_command(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment