Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hpvm-release
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
llvm
hpvm-release
Commits
bbeee880
Commit
bbeee880
authored
4 years ago
by
Yifan Zhao
Browse files
Options
Downloads
Patches
Plain Diff
fixed include path for approxhpvm.py
parent
03e97f14
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
hpvm/projects/hpvm-tensor-rt/CMakeLists.txt
+6
-2
6 additions, 2 deletions
hpvm/projects/hpvm-tensor-rt/CMakeLists.txt
with
6 additions
and
2 deletions
hpvm/projects/hpvm-tensor-rt/CMakeLists.txt
+
6
−
2
View file @
bbeee880
...
@@ -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
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment