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
1f2193e3
Commit
1f2193e3
authored
Sep 21, 2017
by
Avijit
Committed by
GitHub
Sep 21, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Excluded MKL_DNN from the Mac builds. (#138)
parent
9e45a7af
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
CMakeLists.txt
CMakeLists.txt
+0
-1
CMakeLists.txt
src/ngraph/CMakeLists.txt
+4
-3
No files found.
CMakeLists.txt
View file @
1f2193e3
...
...
@@ -16,7 +16,6 @@ cmake_minimum_required (VERSION 2.8)
set
(
NGRAPH_INCLUDE_PATH
${
CMAKE_CURRENT_SOURCE_DIR
}
/src
)
# Suppress an OS X-specific warning.
if
(
POLICY CMP0042
)
cmake_policy
(
SET CMP0042 OLD
)
...
...
src/ngraph/CMakeLists.txt
View file @
1f2193e3
...
...
@@ -69,18 +69,19 @@ include_directories(
include_directories
(
SYSTEM
"
${
EIGEN_INCLUDE_DIR
}
"
"
${
MKLDNN_INCLUDE_DIR
}
"
)
add_library
(
ngraph SHARED
${
SRC
}
)
target_include_directories
(
ngraph PUBLIC
"
${
NGRAPH_INCLUDE_PATH
}
"
)
if
(
APPLE
)
set_property
(
TARGET ngraph PROPERTY PREFIX
"lib"
)
set_property
(
TARGET ngraph PROPERTY OUTPUT_NAME
"ngraph.so"
)
set_property
(
TARGET ngraph PROPERTY SUFFIX
""
)
else
()
include_directories
(
"
${
MKLDNN_INCLUDE_DIR
}
"
)
endif
()
#-----------------------------------------------------------------------------------------------
# Installation logic...
#-----------------------------------------------------------------------------------------------
...
...
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