Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
N
ngraph
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ngraph
Commits
2f9faecd
Commit
2f9faecd
authored
Jun 26, 2018
by
Robert Kimball
Committed by
Scott Cyphers
Jun 26, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make sure ngraph name is correct (#1157)
parent
ed112464
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
CMakeLists.txt
src/ngraph/CMakeLists.txt
+2
-2
gpu_external_function.cpp
src/ngraph/runtime/gpu/gpu_external_function.cpp
+1
-1
No files found.
src/ngraph/CMakeLists.txt
View file @
2f9faecd
...
...
@@ -183,7 +183,7 @@ target_link_libraries(ngraph PUBLIC libjson)
if
(
NOT APPLE
)
set_property
(
TARGET ngraph APPEND_STRING PROPERTY LINK_FLAGS
" -Wl,--rpath,$ORIGIN"
)
#
N
Graph links against one or more libraries (ex. LLVM) but we don't want to
#
n
Graph links against one or more libraries (ex. LLVM) but we don't want to
# export these symbols as part of the DSO. This is a GNU ld (and derivatives) specific
# option so making this portable is still an open issue. As a note for the future,
# this is not an issue on Windows and LLVM's lld does support --exclude-libs.
...
...
@@ -208,7 +208,7 @@ target_link_libraries(ngraph PUBLIC dl pthread)
# Installation logic...
#-----------------------------------------------------------------------------------------------
#
N
Graph
#
n
Graph
install
(
FILES
${
CMAKE_BINARY_DIR
}
/VERSION DESTINATION
${
CMAKE_INSTALL_PREFIX
}
)
install
(
TARGETS ngraph DESTINATION
${
NGRAPH_INSTALL_LIB
}
)
# libngraph.so
install
(
DIRECTORY
...
...
src/ngraph/runtime/gpu/gpu_external_function.cpp
View file @
2f9faecd
...
...
@@ -314,7 +314,7 @@ void runtime::gpu::GPU_ExternalFunction::compile()
codegen
::
CodeWriter
writer
;
writer
+=
R"(// Generated by the
N
Graph GPU backend
R"(// Generated by the
n
Graph GPU backend
#include <cublas_v2.h>
#include <cuda.h>
#include <cuda_runtime.h>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment