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
072fe644
Commit
072fe644
authored
Oct 06, 2017
by
Robert Kimball
Committed by
Scott Cyphers
Oct 06, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bob/includes (#178)
* cleanup * fix node includes
parent
df4d436f
Hide whitespace changes
Inline
Side-by-side
Showing
66 changed files
with
94 additions
and
55 deletions
+94
-55
buffer.hpp
src/ngraph/descriptor/buffer.hpp
+0
-2
input.cpp
src/ngraph/descriptor/input.cpp
+2
-2
dense_tensor_view_layout.hpp
src/ngraph/descriptor/layout/dense_tensor_view_layout.hpp
+1
-0
tensor_view_layout.hpp
src/ngraph/descriptor/layout/tensor_view_layout.hpp
+1
-0
output.cpp
src/ngraph/descriptor/output.cpp
+3
-2
output.hpp
src/ngraph/descriptor/output.hpp
+1
-0
node.hpp
src/ngraph/node.hpp
+3
-7
abs.hpp
src/ngraph/ops/abs.hpp
+2
-0
add.hpp
src/ngraph/ops/add.hpp
+2
-0
binary_elementwise_arithmetic.cpp
src/ngraph/ops/binary_elementwise_arithmetic.cpp
+1
-1
binary_elementwise_builtin.cpp
src/ngraph/ops/binary_elementwise_builtin.cpp
+1
-1
binary_elementwise_comparison.cpp
src/ngraph/ops/binary_elementwise_comparison.cpp
+1
-1
broadcast.cpp
src/ngraph/ops/broadcast.cpp
+1
-1
broadcast.hpp
src/ngraph/ops/broadcast.hpp
+2
-0
ceiling.hpp
src/ngraph/ops/ceiling.hpp
+2
-0
concatenate.cpp
src/ngraph/ops/concatenate.cpp
+1
-1
concatenate.hpp
src/ngraph/ops/concatenate.hpp
+2
-0
constant.cpp
src/ngraph/ops/constant.cpp
+1
-1
constant.hpp
src/ngraph/ops/constant.hpp
+1
-0
convert.cpp
src/ngraph/ops/convert.cpp
+1
-1
convert.hpp
src/ngraph/ops/convert.hpp
+2
-0
divide.hpp
src/ngraph/ops/divide.hpp
+2
-0
dot.cpp
src/ngraph/ops/dot.cpp
+1
-1
dot.hpp
src/ngraph/ops/dot.hpp
+2
-0
equal.hpp
src/ngraph/ops/equal.hpp
+2
-0
exp.hpp
src/ngraph/ops/exp.hpp
+2
-0
floor.hpp
src/ngraph/ops/floor.hpp
+2
-0
function_call.cpp
src/ngraph/ops/function_call.cpp
+2
-2
function_call.hpp
src/ngraph/ops/function_call.hpp
+1
-1
greater.hpp
src/ngraph/ops/greater.hpp
+2
-0
greater_eq.hpp
src/ngraph/ops/greater_eq.hpp
+2
-0
less.hpp
src/ngraph/ops/less.hpp
+2
-0
less_eq.hpp
src/ngraph/ops/less_eq.hpp
+2
-0
log.hpp
src/ngraph/ops/log.hpp
+2
-0
maximum.hpp
src/ngraph/ops/maximum.hpp
+2
-0
minimum.hpp
src/ngraph/ops/minimum.hpp
+2
-0
multiply.hpp
src/ngraph/ops/multiply.hpp
+2
-0
negative.hpp
src/ngraph/ops/negative.hpp
+2
-0
not_equal.hpp
src/ngraph/ops/not_equal.hpp
+2
-0
op.cpp
src/ngraph/ops/op.cpp
+1
-1
parameter.cpp
src/ngraph/ops/parameter.cpp
+1
-1
power.hpp
src/ngraph/ops/power.hpp
+2
-0
reduce.cpp
src/ngraph/ops/reduce.cpp
+2
-2
reduce.hpp
src/ngraph/ops/reduce.hpp
+2
-0
remainder.hpp
src/ngraph/ops/remainder.hpp
+2
-0
select.cpp
src/ngraph/ops/select.cpp
+1
-1
select.hpp
src/ngraph/ops/select.hpp
+2
-0
subtract.hpp
src/ngraph/ops/subtract.hpp
+2
-0
tuple.cpp
src/ngraph/ops/tuple.cpp
+1
-1
tuple.hpp
src/ngraph/ops/tuple.hpp
+2
-0
unary_elementwise_arithmetic.cpp
src/ngraph/ops/unary_elementwise_arithmetic.cpp
+1
-4
unary_elementwise_builtin.cpp
src/ngraph/ops/unary_elementwise_builtin.cpp
+1
-1
assign_tensors.hpp
src/ngraph/pass/assign_tensors.hpp
+0
-1
dump_sorted.cpp
src/ngraph/pass/dump_sorted.cpp
+2
-1
dump_sorted.hpp
src/ngraph/pass/dump_sorted.hpp
+0
-1
liveness.cpp
src/ngraph/pass/liveness.cpp
+3
-2
liveness.hpp
src/ngraph/pass/liveness.hpp
+0
-1
manager.hpp
src/ngraph/pass/manager.hpp
+0
-3
manager_state.hpp
src/ngraph/pass/manager_state.hpp
+2
-3
memory_layout.cpp
src/ngraph/pass/memory_layout.cpp
+0
-1
memory_layout.hpp
src/ngraph/pass/memory_layout.hpp
+0
-1
memory_visualize.hpp
src/ngraph/pass/memory_visualize.hpp
+0
-1
pass.hpp
src/ngraph/pass/pass.hpp
+2
-2
propagate_types.hpp
src/ngraph/pass/propagate_types.hpp
+0
-1
topological_sort.hpp
src/ngraph/pass/topological_sort.hpp
+0
-1
visualize_tree.hpp
src/ngraph/pass/visualize_tree.hpp
+0
-1
No files found.
src/ngraph/descriptor/buffer.hpp
View file @
072fe644
...
...
@@ -14,8 +14,6 @@
#pragma once
#include <memory>
namespace
ngraph
{
namespace
descriptor
...
...
src/ngraph/descriptor/input.cpp
View file @
072fe644
...
...
@@ -12,9 +12,9 @@
// See the License for the specific language governing permissions and
// ----------------------------------------------------------------------------
#include "ngraph/ngraph.hpp"
#include "ngraph/descriptor/input.hpp"
#include "ngraph/descriptor/output.hpp"
using
namespace
std
;
using
namespace
ngraph
;
using
namespace
descriptor
;
...
...
src/ngraph/descriptor/layout/dense_tensor_view_layout.hpp
View file @
072fe644
...
...
@@ -14,6 +14,7 @@
#pragma once
#include <cstddef>
#include <vector>
#include "ngraph/descriptor/buffer.hpp"
...
...
src/ngraph/descriptor/layout/tensor_view_layout.hpp
View file @
072fe644
...
...
@@ -14,6 +14,7 @@
#pragma once
#include <memory>
#include <tuple>
#include <vector>
...
...
src/ngraph/descriptor/output.cpp
View file @
072fe644
...
...
@@ -12,11 +12,12 @@
// See the License for the specific language governing permissions and
// ----------------------------------------------------------------------------
#include "ngraph/ngraph.hpp"
#include "ngraph/descriptor/output.hpp"
#include "ngraph/descriptor/input.hpp"
using
namespace
std
;
using
namespace
ngraph
;
using
namespace
descriptor
;
using
namespace
ngraph
::
descriptor
;
Output
::
Output
(
const
std
::
shared_ptr
<
Node
>&
node
,
size_t
index
,
...
...
src/ngraph/descriptor/output.hpp
View file @
072fe644
...
...
@@ -18,6 +18,7 @@
#include <set>
#include "ngraph/descriptor/tensor_view.hpp"
#include "ngraph/node.hpp"
namespace
ngraph
{
...
...
src/ngraph/node.hpp
View file @
072fe644
...
...
@@ -22,17 +22,13 @@
#include <iostream>
#include "ngraph/common.hpp"
#include "ngraph/descriptor/input.hpp"
#include "ngraph/descriptor/output.hpp"
#include "ngraph/descriptor/tensor.hpp"
#include "ngraph/types/type.hpp"
namespace
ngraph
{
namespace
descriptor
{
class
Input
;
class
Output
;
class
Tensor
;
}
/// Nodes are the backbone of the graph of Value dataflow. Every node has
/// zero or more nodes as arguments and one value, which is either a tensor
/// view or a (possibly empty) tuple of values.
...
...
src/ngraph/ops/abs.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/add.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/binary_elementwise_arithmetic.cpp
View file @
072fe644
...
...
@@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// ----------------------------------------------------------------------------
#include "ngraph/
ngraph
.hpp"
#include "ngraph/
ops/op
.hpp"
using
namespace
std
;
using
namespace
ngraph
;
...
...
src/ngraph/ops/binary_elementwise_builtin.cpp
View file @
072fe644
...
...
@@ -15,7 +15,7 @@
#include <memory>
#include "ngraph/log.hpp"
#include "ngraph/
ngraph
.hpp"
#include "ngraph/
ops/op
.hpp"
using
namespace
std
;
using
namespace
ngraph
;
...
...
src/ngraph/ops/binary_elementwise_comparison.cpp
View file @
072fe644
...
...
@@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// ----------------------------------------------------------------------------
#include "ngraph/
ngraph
.hpp"
#include "ngraph/
ops/op
.hpp"
using
namespace
std
;
using
namespace
ngraph
;
...
...
src/ngraph/ops/broadcast.cpp
View file @
072fe644
...
...
@@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// ----------------------------------------------------------------------------
#include "ngraph/
ngraph
.hpp"
#include "ngraph/
ops/broadcast
.hpp"
using
namespace
std
;
using
namespace
ngraph
::
op
;
...
...
src/ngraph/ops/broadcast.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/ceiling.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/concatenate.cpp
View file @
072fe644
...
...
@@ -14,7 +14,7 @@
#include <memory>
#include "ngraph/
ngraph
.hpp"
#include "ngraph/
ops/concatenate
.hpp"
using
namespace
std
;
using
namespace
ngraph
::
op
;
...
...
src/ngraph/ops/concatenate.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/constant.cpp
View file @
072fe644
...
...
@@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// ----------------------------------------------------------------------------
#include "ngraph/
ngraph
.hpp"
#include "ngraph/
ops/constant
.hpp"
using
namespace
ngraph
::
op
;
...
...
src/ngraph/ops/constant.hpp
View file @
072fe644
...
...
@@ -16,6 +16,7 @@
#include <sstream>
#include "ngraph/node.hpp"
#include "ngraph/runtime/utils.hpp"
#include "ngraph/types/element_type.hpp"
...
...
src/ngraph/ops/convert.cpp
View file @
072fe644
...
...
@@ -14,7 +14,7 @@
#include <memory>
#include "ngraph/
ngraph
.hpp"
#include "ngraph/
ops/convert
.hpp"
using
namespace
std
;
using
namespace
ngraph
;
...
...
src/ngraph/ops/convert.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/divide.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/dot.cpp
View file @
072fe644
...
...
@@ -14,7 +14,7 @@
#include <memory>
#include "ngraph/
ngraph
.hpp"
#include "ngraph/
ops/dot
.hpp"
using
namespace
std
;
using
namespace
ngraph
::
op
;
...
...
src/ngraph/ops/dot.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/equal.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/exp.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/floor.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/function_call.cpp
View file @
072fe644
...
...
@@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// ----------------------------------------------------------------------------
#include "ngraph/
ngraph
.hpp"
#include "ngraph/
pass/topological_sort
.hpp"
#include "ngraph/
ops/function_call
.hpp"
#include "ngraph/
function
.hpp"
using
namespace
std
;
using
namespace
ngraph
::
op
;
...
...
src/ngraph/ops/function_call.hpp
View file @
072fe644
...
...
@@ -14,7 +14,7 @@
#pragma once
#include "ngraph/
pass/manager
.hpp"
#include "ngraph/
ops/op
.hpp"
#include "ngraph/pass/propagate_types.hpp"
namespace
ngraph
...
...
src/ngraph/ops/greater.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/greater_eq.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/less.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/less_eq.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/log.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/maximum.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/minimum.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/multiply.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/negative.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/not_equal.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/op.cpp
View file @
072fe644
...
...
@@ -15,7 +15,7 @@
#include <algorithm>
#include <sstream>
#include "ngraph/
ngraph
.hpp"
#include "ngraph/
ops/op
.hpp"
using
namespace
ngraph
;
using
namespace
std
;
src/ngraph/ops/parameter.cpp
View file @
072fe644
...
...
@@ -14,7 +14,7 @@
#include <sstream>
#include "ngraph/
ngraph
.hpp"
#include "ngraph/
ops/parameter
.hpp"
using
namespace
std
;
using
namespace
ngraph
::
op
;
...
...
src/ngraph/ops/power.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/reduce.cpp
View file @
072fe644
...
...
@@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// ----------------------------------------------------------------------------
#include "ngraph/
ngraph
.hpp"
#include "ngraph/
pass/topological_sort
.hpp"
#include "ngraph/
ops/reduce
.hpp"
#include "ngraph/
function
.hpp"
using
namespace
std
;
using
namespace
ngraph
::
op
;
...
...
src/ngraph/ops/reduce.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/remainder.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/select.cpp
View file @
072fe644
...
...
@@ -15,7 +15,7 @@
#include <memory>
#include "ngraph/log.hpp"
#include "ngraph/
ngraph
.hpp"
#include "ngraph/
ops/select
.hpp"
using
namespace
std
;
using
namespace
ngraph
;
...
...
src/ngraph/ops/select.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/subtract.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/tuple.cpp
View file @
072fe644
...
...
@@ -15,7 +15,7 @@
#include <memory>
#include <vector>
#include "ngraph/
ngraph
.hpp"
#include "ngraph/
ops/tuple
.hpp"
using
namespace
std
;
using
namespace
ngraph
::
op
;
...
...
src/ngraph/ops/tuple.hpp
View file @
072fe644
...
...
@@ -14,6 +14,8 @@
#pragma once
#include "ngraph/ops/op.hpp"
namespace
ngraph
{
namespace
op
...
...
src/ngraph/ops/unary_elementwise_arithmetic.cpp
View file @
072fe644
...
...
@@ -12,11 +12,8 @@
// See the License for the specific language governing permissions and
// ----------------------------------------------------------------------------
#include
<memory>
#include
"ngraph/ops/op.hpp"
#include "ngraph/ngraph.hpp"
using
namespace
std
;
using
namespace
ngraph
;
using
namespace
ngraph
::
op
;
...
...
src/ngraph/ops/unary_elementwise_builtin.cpp
View file @
072fe644
...
...
@@ -14,7 +14,7 @@
#include <memory>
#include "ngraph/
ngraph
.hpp"
#include "ngraph/
ops/op
.hpp"
using
namespace
std
;
using
namespace
ngraph
;
...
...
src/ngraph/pass/assign_tensors.hpp
View file @
072fe644
...
...
@@ -22,7 +22,6 @@ namespace ngraph
{
class
AssignTensors
;
}
class
Node
;
}
class
ngraph
::
pass
::
AssignTensors
:
public
CallGraphPass
...
...
src/ngraph/pass/dump_sorted.cpp
View file @
072fe644
...
...
@@ -14,7 +14,8 @@
#include <fstream>
#include "ngraph/ngraph.hpp"
#include "ngraph/descriptor/input.hpp"
#include "ngraph/descriptor/output.hpp"
#include "ngraph/pass/dump_sorted.hpp"
#include "ngraph/util.hpp"
...
...
src/ngraph/pass/dump_sorted.hpp
View file @
072fe644
...
...
@@ -24,7 +24,6 @@ namespace ngraph
{
class
DumpSorted
;
}
class
Node
;
}
class
ngraph
::
pass
::
DumpSorted
:
public
ModulePass
...
...
src/ngraph/pass/liveness.cpp
View file @
072fe644
...
...
@@ -16,9 +16,10 @@
#include <sstream>
#include <unordered_set>
#include "ngraph/descriptor/input.hpp"
#include "ngraph/descriptor/output.hpp"
#include "ngraph/log.hpp"
#include "ngraph/log.hpp"
#include "ngraph/ngraph.hpp"
#include "ngraph/node.hpp"
#include "ngraph/pass/assign_tensors.hpp"
#include "ngraph/pass/liveness.hpp"
#include "ngraph/util.hpp"
...
...
src/ngraph/pass/liveness.hpp
View file @
072fe644
...
...
@@ -23,7 +23,6 @@ namespace ngraph
{
class
Liveness
;
}
class
Node
;
}
class
ngraph
::
pass
::
Liveness
:
public
CallGraphPass
...
...
src/ngraph/pass/manager.hpp
View file @
072fe644
...
...
@@ -28,9 +28,6 @@ namespace ngraph
class
Manager
;
class
ManagerState
;
}
class
Node
;
class
Function
;
}
class
ngraph
::
pass
::
Manager
...
...
src/ngraph/pass/manager_state.hpp
View file @
072fe644
...
...
@@ -17,15 +17,14 @@
#include <memory>
#include <vector>
#include "ngraph/function.hpp"
namespace
ngraph
{
namespace
pass
{
class
ManagerState
;
}
class
Node
;
class
Function
;
}
class
ngraph
::
pass
::
ManagerState
...
...
src/ngraph/pass/memory_layout.cpp
View file @
072fe644
...
...
@@ -17,7 +17,6 @@
#include "ngraph/log.hpp"
#include "ngraph/log.hpp"
#include "ngraph/ngraph.hpp"
#include "ngraph/pass/liveness.hpp"
#include "ngraph/pass/manager.hpp"
#include "ngraph/pass/memory_layout.hpp"
...
...
src/ngraph/pass/memory_layout.hpp
View file @
072fe644
...
...
@@ -28,7 +28,6 @@ namespace ngraph
class
MemoryNode
;
class
MemoryManager
;
}
class
Node
;
}
class
ngraph
::
pass
::
MemoryLayout
:
public
CallGraphPass
...
...
src/ngraph/pass/memory_visualize.hpp
View file @
072fe644
...
...
@@ -26,7 +26,6 @@ namespace ngraph
{
class
MemoryVisualize
;
}
class
Node
;
}
class
ngraph
::
pass
::
MemoryVisualize
:
public
ModulePass
...
...
src/ngraph/pass/pass.hpp
View file @
072fe644
...
...
@@ -18,7 +18,9 @@
#include <memory>
#include <vector>
#include "ngraph/function.hpp"
#include "ngraph/node.hpp"
#include "ngraph/pass/manager_state.hpp"
namespace
ngraph
{
...
...
@@ -30,9 +32,7 @@ namespace ngraph
class
NodePass
;
class
CallGraphPass
;
class
Manager
;
class
ManagerState
;
}
class
Function
;
}
class
ngraph
::
pass
::
PassBase
...
...
src/ngraph/pass/propagate_types.hpp
View file @
072fe644
...
...
@@ -22,7 +22,6 @@ namespace ngraph
{
class
PropagateTypes
;
}
class
Node
;
}
class
ngraph
::
pass
::
PropagateTypes
:
public
CallGraphPass
...
...
src/ngraph/pass/topological_sort.hpp
View file @
072fe644
...
...
@@ -25,7 +25,6 @@ namespace ngraph
{
class
TopologicalSort
;
}
class
Node
;
}
class
ngraph
::
pass
::
TopologicalSort
:
public
FunctionPass
...
...
src/ngraph/pass/visualize_tree.hpp
View file @
072fe644
...
...
@@ -26,7 +26,6 @@ namespace ngraph
{
class
VisualizeTree
;
}
class
Node
;
}
class
ngraph
::
pass
::
VisualizeTree
:
public
ModulePass
...
...
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