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
accc570c
Commit
accc570c
authored
Sep 11, 2017
by
Bob Kimball
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix review comments
parent
ae48ed32
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
16 deletions
+18
-16
CMakeLists.txt
src/CMakeLists.txt
+12
-12
CMakeLists.txt
test/CMakeLists.txt
+4
-4
test_tools.cpp
test/test_tools.cpp
+2
-0
No files found.
src/CMakeLists.txt
View file @
accc570c
...
...
@@ -12,34 +12,34 @@
# limitations under the License.
set
(
SRC
tree.cpp
util.cpp
log.cpp
ngraph/descriptor/input.cpp
ngraph/descriptor/output.cpp
ngraph/descriptor/tensor.cpp
ngraph/descriptor/tensor_view.cpp
ngraph/descriptor/tensor.cpp
ngraph/node.cpp
ngraph/pass/call_pass.cpp
ngraph/pass/manager.cpp
ngraph/pass/pass.cpp
ngraph/pass/propagate_types.cpp
ngraph/pass/topological_sort.cpp
ngraph/pass/tree_pass.cpp
ngraph/visualize.cpp
ops/binary_elementwise_builtin.cpp
ops/broadcast.cpp
ops/concatenate.cpp
ops/convert.cpp
ops/constant.cpp
ops/convert.cpp
ops/dot.cpp
ops/function.cpp
ops/op.cpp
ops/parameter.cpp
ops/tuple.cpp
ops/unary_elementwise_builtin.cpp
tree.cpp
types/element_type.cpp
types/type.cpp
ngraph/node.cpp
ngraph/visualize.cpp
ngraph/pass/pass.cpp
ngraph/pass/manager.cpp
ngraph/pass/call_pass.cpp
ngraph/pass/tree_pass.cpp
ngraph/pass/topological_sort.cpp
ngraph/pass/propagate_types.cpp
util.cpp
)
set
(
NGRAPH_INCLUDE_PATH
...
...
test/CMakeLists.txt
View file @
accc570c
...
...
@@ -22,19 +22,19 @@ include_directories(
)
set
(
SRC
main.cpp
build_graph.cpp
eigen.cpp
element_type.cpp
op.cpp
input_output_assign.cpp
main.cpp
op.cpp
pass_manager.cpp
tensor.cpp
test_tools.cpp
topological_sort.cpp
type_prop.cpp
util.cpp
uuid.cpp
pass_manager.cpp
test_tools.cpp
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-std=c++11"
)
...
...
test/test_tools.cpp
View file @
accc570c
...
...
@@ -21,6 +21,8 @@
using
namespace
std
;
using
namespace
ngraph
;
// This function traverses the list of ops and verifies that each op's dependencies (its inputs)
// is located earlier in the list. That is enough to be valid
bool
validate_list
(
const
list
<
Node
*>&
nodes
)
{
bool
rc
=
true
;
...
...
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