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
26669ae8
Commit
26669ae8
authored
6 years ago
by
Adam Rogowiec
Committed by
Scott Cyphers
6 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix included headers grouping. (#2111)
- All "<>" and all \"\" are in two separate groups.
parent
b92ebb6b
Hide whitespace changes
Inline
Side-by-side
Showing
119 changed files
with
126 additions
and
265 deletions
+126
-265
attribute.hpp
src/ngraph/frontend/onnx_import/core/attribute.hpp
+0
-1
graph.hpp
src/ngraph/frontend/onnx_import/core/graph.hpp
+2
-4
model.hpp
src/ngraph/frontend/onnx_import/core/model.hpp
+0
-1
operator_set.hpp
src/ngraph/frontend/onnx_import/core/operator_set.hpp
+0
-1
tensor.hpp
src/ngraph/frontend/onnx_import/core/tensor.hpp
+1
-2
value_info.hpp
src/ngraph/frontend/onnx_import/core/value_info.hpp
+0
-1
onnx.cpp
src/ngraph/frontend/onnx_import/onnx.cpp
+1
-3
onnx.hpp
src/ngraph/frontend/onnx_import/onnx.hpp
+1
-2
abs.hpp
src/ngraph/frontend/onnx_import/op/abs.hpp
+1
-2
acos.hpp
src/ngraph/frontend/onnx_import/op/acos.hpp
+1
-2
add.hpp
src/ngraph/frontend/onnx_import/op/add.hpp
+1
-2
and.hpp
src/ngraph/frontend/onnx_import/op/and.hpp
+1
-2
asin.hpp
src/ngraph/frontend/onnx_import/op/asin.hpp
+1
-2
atan.hpp
src/ngraph/frontend/onnx_import/op/atan.hpp
+1
-2
average_pool.cpp
src/ngraph/frontend/onnx_import/op/average_pool.cpp
+0
-1
average_pool.hpp
src/ngraph/frontend/onnx_import/op/average_pool.hpp
+1
-2
batch_norm.cpp
src/ngraph/frontend/onnx_import/op/batch_norm.cpp
+2
-3
cast.cpp
src/ngraph/frontend/onnx_import/op/cast.cpp
+2
-4
cast.hpp
src/ngraph/frontend/onnx_import/op/cast.hpp
+1
-2
ceil.hpp
src/ngraph/frontend/onnx_import/op/ceil.hpp
+1
-2
clip.cpp
src/ngraph/frontend/onnx_import/op/clip.cpp
+2
-5
clip.hpp
src/ngraph/frontend/onnx_import/op/clip.hpp
+1
-2
concat.cpp
src/ngraph/frontend/onnx_import/op/concat.cpp
+0
-1
concat.hpp
src/ngraph/frontend/onnx_import/op/concat.hpp
+1
-2
constant.hpp
src/ngraph/frontend/onnx_import/op/constant.hpp
+1
-2
conv.cpp
src/ngraph/frontend/onnx_import/op/conv.cpp
+5
-7
conv.hpp
src/ngraph/frontend/onnx_import/op/conv.hpp
+1
-2
conv_transpose.hpp
src/ngraph/frontend/onnx_import/op/conv_transpose.hpp
+1
-2
cos.hpp
src/ngraph/frontend/onnx_import/op/cos.hpp
+1
-2
div.hpp
src/ngraph/frontend/onnx_import/op/div.hpp
+1
-2
elu.cpp
src/ngraph/frontend/onnx_import/op/elu.cpp
+0
-2
elu.hpp
src/ngraph/frontend/onnx_import/op/elu.hpp
+1
-2
equal.hpp
src/ngraph/frontend/onnx_import/op/equal.hpp
+1
-2
exp.hpp
src/ngraph/frontend/onnx_import/op/exp.hpp
+1
-2
flatten.cpp
src/ngraph/frontend/onnx_import/op/flatten.cpp
+0
-1
flatten.hpp
src/ngraph/frontend/onnx_import/op/flatten.hpp
+1
-2
floor.hpp
src/ngraph/frontend/onnx_import/op/floor.hpp
+1
-2
gemm.cpp
src/ngraph/frontend/onnx_import/op/gemm.cpp
+3
-5
gemm.hpp
src/ngraph/frontend/onnx_import/op/gemm.hpp
+1
-2
global_average_pool.cpp
src/ngraph/frontend/onnx_import/op/global_average_pool.cpp
+0
-1
global_average_pool.hpp
src/ngraph/frontend/onnx_import/op/global_average_pool.hpp
+1
-2
global_max_pool.cpp
src/ngraph/frontend/onnx_import/op/global_max_pool.cpp
+0
-1
global_max_pool.hpp
src/ngraph/frontend/onnx_import/op/global_max_pool.hpp
+1
-2
greater.hpp
src/ngraph/frontend/onnx_import/op/greater.hpp
+1
-2
hard_sigmoid.cpp
src/ngraph/frontend/onnx_import/op/hard_sigmoid.cpp
+2
-5
hard_sigmoid.hpp
src/ngraph/frontend/onnx_import/op/hard_sigmoid.hpp
+1
-2
identity.hpp
src/ngraph/frontend/onnx_import/op/identity.hpp
+1
-2
leaky_relu.cpp
src/ngraph/frontend/onnx_import/op/leaky_relu.cpp
+3
-6
leaky_relu.hpp
src/ngraph/frontend/onnx_import/op/leaky_relu.hpp
+1
-2
less.hpp
src/ngraph/frontend/onnx_import/op/less.hpp
+1
-2
log.hpp
src/ngraph/frontend/onnx_import/op/log.hpp
+1
-2
log_softmax.hpp
src/ngraph/frontend/onnx_import/op/log_softmax.hpp
+2
-3
lrn.cpp
src/ngraph/frontend/onnx_import/op/lrn.cpp
+1
-2
lrn.hpp
src/ngraph/frontend/onnx_import/op/lrn.hpp
+1
-2
lstm.cpp
src/ngraph/frontend/onnx_import/op/lstm.cpp
+2
-3
lstm.hpp
src/ngraph/frontend/onnx_import/op/lstm.hpp
+1
-2
matmul.cpp
src/ngraph/frontend/onnx_import/op/matmul.cpp
+2
-3
matmul.hpp
src/ngraph/frontend/onnx_import/op/matmul.hpp
+1
-2
max.hpp
src/ngraph/frontend/onnx_import/op/max.hpp
+1
-2
max_pool.cpp
src/ngraph/frontend/onnx_import/op/max_pool.cpp
+0
-1
max_pool.hpp
src/ngraph/frontend/onnx_import/op/max_pool.hpp
+1
-2
mean.cpp
src/ngraph/frontend/onnx_import/op/mean.cpp
+1
-2
mean.hpp
src/ngraph/frontend/onnx_import/op/mean.hpp
+1
-2
min.hpp
src/ngraph/frontend/onnx_import/op/min.hpp
+1
-2
mul.hpp
src/ngraph/frontend/onnx_import/op/mul.hpp
+1
-2
neg.hpp
src/ngraph/frontend/onnx_import/op/neg.hpp
+1
-2
not.hpp
src/ngraph/frontend/onnx_import/op/not.hpp
+1
-2
or.hpp
src/ngraph/frontend/onnx_import/op/or.hpp
+1
-2
pow.hpp
src/ngraph/frontend/onnx_import/op/pow.hpp
+1
-2
prelu.cpp
src/ngraph/frontend/onnx_import/op/prelu.cpp
+1
-2
prelu.hpp
src/ngraph/frontend/onnx_import/op/prelu.hpp
+1
-2
reciprocal.cpp
src/ngraph/frontend/onnx_import/op/reciprocal.cpp
+0
-1
reciprocal.hpp
src/ngraph/frontend/onnx_import/op/reciprocal.hpp
+1
-2
reduce.cpp
src/ngraph/frontend/onnx_import/op/reduce.cpp
+0
-1
reduce.hpp
src/ngraph/frontend/onnx_import/op/reduce.hpp
+1
-2
relu.hpp
src/ngraph/frontend/onnx_import/op/relu.hpp
+1
-2
reshape.cpp
src/ngraph/frontend/onnx_import/op/reshape.cpp
+1
-2
reshape.hpp
src/ngraph/frontend/onnx_import/op/reshape.hpp
+1
-2
selu.cpp
src/ngraph/frontend/onnx_import/op/selu.cpp
+3
-6
selu.hpp
src/ngraph/frontend/onnx_import/op/selu.hpp
+1
-2
shape.cpp
src/ngraph/frontend/onnx_import/op/shape.cpp
+1
-2
shape.hpp
src/ngraph/frontend/onnx_import/op/shape.hpp
+1
-2
sigmoid.hpp
src/ngraph/frontend/onnx_import/op/sigmoid.hpp
+1
-2
sin.hpp
src/ngraph/frontend/onnx_import/op/sin.hpp
+1
-2
size.hpp
src/ngraph/frontend/onnx_import/op/size.hpp
+1
-2
slice.cpp
src/ngraph/frontend/onnx_import/op/slice.cpp
+0
-1
slice.hpp
src/ngraph/frontend/onnx_import/op/slice.hpp
+1
-2
softmax.cpp
src/ngraph/frontend/onnx_import/op/softmax.cpp
+1
-2
softplus.cpp
src/ngraph/frontend/onnx_import/op/softplus.cpp
+0
-2
softplus.hpp
src/ngraph/frontend/onnx_import/op/softplus.hpp
+1
-2
softsign.cpp
src/ngraph/frontend/onnx_import/op/softsign.cpp
+0
-1
softsign.hpp
src/ngraph/frontend/onnx_import/op/softsign.hpp
+1
-2
split.hpp
src/ngraph/frontend/onnx_import/op/split.hpp
+1
-2
sqrt.hpp
src/ngraph/frontend/onnx_import/op/sqrt.hpp
+1
-2
squeeze.cpp
src/ngraph/frontend/onnx_import/op/squeeze.cpp
+1
-2
squeeze.hpp
src/ngraph/frontend/onnx_import/op/squeeze.hpp
+1
-2
sub.hpp
src/ngraph/frontend/onnx_import/op/sub.hpp
+1
-2
sum.hpp
src/ngraph/frontend/onnx_import/op/sum.hpp
+1
-2
tan.hpp
src/ngraph/frontend/onnx_import/op/tan.hpp
+1
-2
tanh.hpp
src/ngraph/frontend/onnx_import/op/tanh.hpp
+1
-2
thresholded_relu.cpp
src/ngraph/frontend/onnx_import/op/thresholded_relu.cpp
+2
-5
thresholded_relu.hpp
src/ngraph/frontend/onnx_import/op/thresholded_relu.hpp
+1
-2
transpose.cpp
src/ngraph/frontend/onnx_import/op/transpose.cpp
+0
-1
transpose.hpp
src/ngraph/frontend/onnx_import/op/transpose.hpp
+1
-2
unsqueeze.cpp
src/ngraph/frontend/onnx_import/op/unsqueeze.cpp
+2
-3
unsqueeze.hpp
src/ngraph/frontend/onnx_import/op/unsqueeze.hpp
+1
-2
xor.hpp
src/ngraph/frontend/onnx_import/op/xor.hpp
+1
-2
ops_bridge.hpp
src/ngraph/frontend/onnx_import/ops_bridge.hpp
+1
-2
broadcasting.cpp
src/ngraph/frontend/onnx_import/utils/broadcasting.cpp
+1
-2
common.hpp
src/ngraph/frontend/onnx_import/utils/common.hpp
+0
-1
convpool.cpp
src/ngraph/frontend/onnx_import/utils/convpool.cpp
+2
-3
convpool.hpp
src/ngraph/frontend/onnx_import/utils/convpool.hpp
+2
-3
reduction.hpp
src/ngraph/frontend/onnx_import/utils/reduction.hpp
+2
-3
reshape.cpp
src/ngraph/frontend/onnx_import/utils/reshape.cpp
+1
-2
variadic.hpp
src/ngraph/frontend/onnx_import/utils/variadic.hpp
+2
-4
backend_manager.cpp
src/ngraph/frontend/onnxifi/backend_manager.cpp
+3
-5
backend_manager.hpp
src/ngraph/frontend/onnxifi/backend_manager.hpp
+1
-3
onnxifi.cpp
src/ngraph/frontend/onnxifi/onnxifi.cpp
+1
-2
tensor.hpp
src/ngraph/frontend/onnxifi/tensor.hpp
+0
-1
No files found.
src/ngraph/frontend/onnx_import/core/attribute.hpp
View file @
26669ae8
...
...
@@ -19,7 +19,6 @@
#include <onnx-ml.pb.h>
#include "ngraph/except.hpp"
#include "tensor.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/core/graph.hpp
View file @
26669ae8
...
...
@@ -16,14 +16,12 @@
#pragma once
#include <onnx-ml.pb.h>
#include <string>
#include <vector>
#include <onnx-ml.pb.h>
#include "ngraph/parameter_vector.hpp"
#include "model.hpp"
#include "ngraph/parameter_vector.hpp"
#include "operator_set.hpp"
#include "value_info.hpp"
#include "weight.hpp"
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/core/model.hpp
View file @
26669ae8
...
...
@@ -17,7 +17,6 @@
#pragma once
#include <onnx-ml.pb.h>
#include <ostream>
#include <string>
#include <unordered_map>
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/core/operator_set.hpp
View file @
26669ae8
...
...
@@ -21,7 +21,6 @@
#include <unordered_map>
#include "ngraph/node_vector.hpp"
#include "node.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/core/tensor.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include <vector>
#include <onnx-ml.pb.h>
#include <vector>
#include "ngraph/shape.hpp"
#include "ngraph/type/element_type.hpp"
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/core/value_info.hpp
View file @
26669ae8
...
...
@@ -22,7 +22,6 @@
#include "ngraph/parameter_vector.hpp"
#include "ngraph/shape.hpp"
#include "ngraph/type/element_type.hpp"
#include "node.hpp"
#include "tensor.hpp"
#include "weight.hpp"
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/onnx.cpp
View file @
26669ae8
...
...
@@ -16,12 +16,10 @@
#include <fstream>
#include "ngraph/except.hpp"
#include "core/graph.hpp"
#include "core/model.hpp"
#include "core/node.hpp"
#include "ngraph/except.hpp"
#include "onnx.hpp"
#include "ops_bridge.hpp"
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/onnx.hpp
View file @
26669ae8
...
...
@@ -19,10 +19,9 @@
#include <iostream>
#include <string>
#include "ngraph/function.hpp"
#include "core/operator_set.hpp"
#include "core/weight.hpp"
#include "ngraph/function.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/abs.hpp
View file @
26669ae8
...
...
@@ -18,11 +18,10 @@
#include <memory>
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/abs.hpp"
#include "core/node.hpp"
namespace
ngraph
{
namespace
onnx_import
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/acos.hpp
View file @
26669ae8
...
...
@@ -18,11 +18,10 @@
#include <memory>
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/acos.hpp"
#include "core/node.hpp"
namespace
ngraph
{
namespace
onnx_import
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/add.hpp
View file @
26669ae8
...
...
@@ -16,10 +16,9 @@
#pragma once
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/add.hpp"
#include "core/node.hpp"
#include "utils/broadcasting.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/and.hpp
View file @
26669ae8
...
...
@@ -16,10 +16,9 @@
#pragma once
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/and.hpp"
#include "core/node.hpp"
#include "utils/broadcasting.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/asin.hpp
View file @
26669ae8
...
...
@@ -18,11 +18,10 @@
#include <memory>
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/asin.hpp"
#include "core/node.hpp"
namespace
ngraph
{
namespace
onnx_import
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/atan.hpp
View file @
26669ae8
...
...
@@ -18,11 +18,10 @@
#include <memory>
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/atan.hpp"
#include "core/node.hpp"
namespace
ngraph
{
namespace
onnx_import
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/average_pool.cpp
View file @
26669ae8
...
...
@@ -17,7 +17,6 @@
#include "ngraph/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/avg_pool.hpp"
#include "utils/convpool.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/average_pool.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/batch_norm.cpp
View file @
26669ae8
...
...
@@ -17,11 +17,10 @@
#include <cstdint>
#include <memory>
#include "ngraph/node_vector.hpp"
#include "ngraph/op/batch_norm.hpp"
#include "ngraph/frontend/onnx_import/exceptions.hpp"
#include "ngraph/frontend/onnx_import/op/batch_norm.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/batch_norm.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/cast.cpp
View file @
26669ae8
...
...
@@ -15,14 +15,12 @@
//*****************************************************************************
#include <memory>
#include <onnx-ml.pb.h>
#include "ngraph/op/convert.hpp"
#include "ngraph/type/element_type.hpp"
#include "cast.hpp"
#include "exceptions.hpp"
#include "ngraph/op/convert.hpp"
#include "ngraph/type/element_type.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/cast.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/ceil.hpp
View file @
26669ae8
...
...
@@ -18,11 +18,10 @@
#include <memory>
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/ceiling.hpp"
#include "core/node.hpp"
namespace
ngraph
{
namespace
onnx_import
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/clip.cpp
View file @
26669ae8
...
...
@@ -17,17 +17,14 @@
#include <limits>
#include <memory>
#include "clip.hpp"
#include "core/node.hpp"
#include "ngraph/node.hpp"
#include "ngraph/op/constant.hpp"
#include "ngraph/op/maximum.hpp"
#include "ngraph/op/minimum.hpp"
#include "core/node.hpp"
#include "utils/broadcasting.hpp"
#include "clip.hpp"
namespace
ngraph
{
namespace
onnx_import
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/clip.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/concat.cpp
View file @
26669ae8
...
...
@@ -15,7 +15,6 @@
//*****************************************************************************
#include "concat.hpp"
#include "ngraph/op/concat.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/concat.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/constant.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/conv.cpp
View file @
26669ae8
...
...
@@ -18,18 +18,16 @@
#include <memory>
#include <vector>
#include "op/conv.hpp"
#include "ngraph/frontend/onnx_import/exceptions.hpp"
#include "ngraph/frontend/onnx_import/op/conv.hpp"
#include "ngraph/frontend/onnx_import/utils/broadcasting.hpp"
#include "ngraph/frontend/onnx_import/utils/convpool.hpp"
#include "ngraph/op/add.hpp"
#include "ngraph/op/broadcast.hpp"
#include "ngraph/op/concat.hpp"
#include "ngraph/op/convolution.hpp"
#include "ngraph/op/slice.hpp"
#include "ngraph/frontend/onnx_import/exceptions.hpp"
#include "ngraph/frontend/onnx_import/op/conv.hpp"
#include "ngraph/frontend/onnx_import/utils/broadcasting.hpp"
#include "ngraph/frontend/onnx_import/utils/convpool.hpp"
#include "op/conv.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/conv.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/conv_transpose.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/cos.hpp
View file @
26669ae8
...
...
@@ -18,11 +18,10 @@
#include <memory>
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/cos.hpp"
#include "core/node.hpp"
namespace
ngraph
{
namespace
onnx_import
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/div.hpp
View file @
26669ae8
...
...
@@ -16,10 +16,9 @@
#pragma once
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/divide.hpp"
#include "core/node.hpp"
#include "utils/broadcasting.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/elu.cpp
View file @
26669ae8
...
...
@@ -18,7 +18,6 @@
#include <vector>
#include "ngraph/node.hpp"
#include "ngraph/op/add.hpp"
#include "ngraph/op/broadcast.hpp"
#include "ngraph/op/constant.hpp"
...
...
@@ -27,7 +26,6 @@
#include "ngraph/op/minimum.hpp"
#include "ngraph/op/multiply.hpp"
#include "ngraph/op/subtract.hpp"
#include "utils/broadcasting.hpp"
#include "elu.hpp"
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/elu.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/equal.hpp
View file @
26669ae8
...
...
@@ -16,10 +16,9 @@
#pragma once
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/equal.hpp"
#include "core/node.hpp"
#include "utils/broadcasting.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/exp.hpp
View file @
26669ae8
...
...
@@ -18,11 +18,10 @@
#include <memory>
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/exp.hpp"
#include "core/node.hpp"
namespace
ngraph
{
namespace
onnx_import
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/flatten.cpp
View file @
26669ae8
...
...
@@ -15,7 +15,6 @@
//*****************************************************************************
#include "flatten.hpp"
#include "exceptions.hpp"
#include "utils/reshape.hpp"
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/flatten.hpp
View file @
26669ae8
...
...
@@ -18,9 +18,8 @@
#include <memory>
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/floor.hpp
View file @
26669ae8
...
...
@@ -18,11 +18,10 @@
#include <memory>
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/floor.hpp"
#include "core/node.hpp"
namespace
ngraph
{
namespace
onnx_import
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/gemm.cpp
View file @
26669ae8
...
...
@@ -15,17 +15,15 @@
//*****************************************************************************
#include "op/gemm.hpp"
#include "ngraph/frontend/onnx_import/exceptions.hpp"
#include "ngraph/frontend/onnx_import/utils/broadcasting.hpp"
#include "ngraph/frontend/onnx_import/utils/reshape.hpp"
#include "ngraph/op/add.hpp"
#include "ngraph/op/broadcast.hpp"
#include "ngraph/op/constant.hpp"
#include "ngraph/op/dot.hpp"
#include "ngraph/op/multiply.hpp"
#include "ngraph/frontend/onnx_import/exceptions.hpp"
#include "ngraph/frontend/onnx_import/utils/broadcasting.hpp"
#include "ngraph/frontend/onnx_import/utils/reshape.hpp"
namespace
ngraph
{
namespace
onnx_import
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/gemm.hpp
View file @
26669ae8
...
...
@@ -18,9 +18,8 @@
#include <memory>
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/global_average_pool.cpp
View file @
26669ae8
...
...
@@ -17,7 +17,6 @@
#include "ngraph/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/avg_pool.hpp"
#include "utils/convpool.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/global_average_pool.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/global_max_pool.cpp
View file @
26669ae8
...
...
@@ -17,7 +17,6 @@
#include "ngraph/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/max_pool.hpp"
#include "utils/convpool.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/global_max_pool.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/greater.hpp
View file @
26669ae8
...
...
@@ -16,10 +16,9 @@
#pragma once
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/greater.hpp"
#include "core/node.hpp"
#include "utils/broadcasting.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/hard_sigmoid.cpp
View file @
26669ae8
...
...
@@ -16,19 +16,16 @@
#include <memory>
#include "core/node.hpp"
#include "hard_sigmoid.hpp"
#include "ngraph/node.hpp"
#include "ngraph/op/add.hpp"
#include "ngraph/op/constant.hpp"
#include "ngraph/op/maximum.hpp"
#include "ngraph/op/minimum.hpp"
#include "ngraph/op/multiply.hpp"
#include "core/node.hpp"
#include "utils/broadcasting.hpp"
#include "hard_sigmoid.hpp"
namespace
ngraph
{
namespace
onnx_import
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/hard_sigmoid.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/identity.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/leaky_relu.cpp
View file @
26669ae8
...
...
@@ -16,21 +16,18 @@
#include <memory>
#include "exceptions.hpp"
#include "ngraph/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/shape.hpp"
#include "ngraph/op/broadcast.hpp"
#include "ngraph/op/constant.hpp"
#include "ngraph/op/maximum.hpp"
#include "ngraph/op/multiply.hpp"
#include "exceptions.hpp"
#include "ngraph/shape.hpp"
#include "core/node.hpp"
#include "utils/broadcasting.hpp"
#include "leaky_relu.hpp"
#include "utils/broadcasting.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/leaky_relu.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/less.hpp
View file @
26669ae8
...
...
@@ -16,10 +16,9 @@
#pragma once
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/less.hpp"
#include "core/node.hpp"
#include "utils/broadcasting.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/log.hpp
View file @
26669ae8
...
...
@@ -18,11 +18,10 @@
#include <memory>
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/log.hpp"
#include "core/node.hpp"
namespace
ngraph
{
namespace
onnx_import
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/log_softmax.hpp
View file @
26669ae8
...
...
@@ -18,13 +18,12 @@
#include <memory>
#include "core/node.hpp"
#include "ngraph/frontend/onnx_import/op/softmax.hpp"
#include "ngraph/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/log.hpp"
#include "core/node.hpp"
#include "ngraph/frontend/onnx_import/op/softmax.hpp"
namespace
ngraph
{
namespace
onnx_import
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/lrn.cpp
View file @
26669ae8
...
...
@@ -16,10 +16,9 @@
#include <memory>
#include "ngraph/op/lrn.hpp"
#include "core/node.hpp"
#include "lrn.hpp"
#include "ngraph/op/lrn.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/lrn.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/lstm.cpp
View file @
26669ae8
...
...
@@ -24,6 +24,8 @@
#include <unordered_map>
#include <vector>
#include "exceptions.hpp"
#include "lstm.hpp"
#include "ngraph/node.hpp"
#include "ngraph/op/add.hpp"
#include "ngraph/op/concat.hpp"
...
...
@@ -34,9 +36,6 @@
#include "ngraph/op/tanh.hpp"
#include "ngraph/shape.hpp"
#include "ngraph/type/element_type.hpp"
#include "exceptions.hpp"
#include "lstm.hpp"
#include "utils/broadcasting.hpp"
#include "utils/common.hpp"
#include "utils/reshape.hpp"
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/lstm.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/matmul.cpp
View file @
26669ae8
...
...
@@ -19,6 +19,8 @@
#include <memory>
#include <vector>
#include "exceptions.hpp"
#include "matmul.hpp"
#include "ngraph/coordinate.hpp"
#include "ngraph/log.hpp"
#include "ngraph/op/concat.hpp"
...
...
@@ -26,9 +28,6 @@
#include "ngraph/op/reshape.hpp"
#include "ngraph/op/slice.hpp"
#include "ngraph/shape.hpp"
#include "exceptions.hpp"
#include "matmul.hpp"
#include "utils/broadcasting.hpp"
#include "utils/reshape.hpp"
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/matmul.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/max.hpp
View file @
26669ae8
...
...
@@ -16,10 +16,9 @@
#pragma once
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/maximum.hpp"
#include "core/node.hpp"
#include "utils/variadic.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/max_pool.cpp
View file @
26669ae8
...
...
@@ -17,7 +17,6 @@
#include "ngraph/op/max_pool.hpp"
#include "ngraph/node.hpp"
#include "ngraph/node_vector.hpp"
#include "utils/convpool.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/max_pool.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/mean.cpp
View file @
26669ae8
...
...
@@ -14,11 +14,10 @@
// limitations under the License.
//*****************************************************************************
#include "mean.hpp"
#include "ngraph/op/add.hpp"
#include "ngraph/op/constant.hpp"
#include "ngraph/op/divide.hpp"
#include "mean.hpp"
#include "utils/variadic.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/mean.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/min.hpp
View file @
26669ae8
...
...
@@ -16,10 +16,9 @@
#pragma once
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/minimum.hpp"
#include "core/node.hpp"
#include "utils/variadic.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/mul.hpp
View file @
26669ae8
...
...
@@ -16,11 +16,10 @@
#pragma once
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/broadcast.hpp"
#include "ngraph/op/multiply.hpp"
#include "core/node.hpp"
#include "utils/broadcasting.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/neg.hpp
View file @
26669ae8
...
...
@@ -16,11 +16,10 @@
#pragma once
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/negative.hpp"
#include "core/node.hpp"
namespace
ngraph
{
namespace
onnx_import
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/not.hpp
View file @
26669ae8
...
...
@@ -16,10 +16,9 @@
#pragma once
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/not.hpp"
#include "core/node.hpp"
#include "utils/broadcasting.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/or.hpp
View file @
26669ae8
...
...
@@ -16,10 +16,9 @@
#pragma once
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/or.hpp"
#include "core/node.hpp"
#include "utils/broadcasting.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/pow.hpp
View file @
26669ae8
...
...
@@ -16,10 +16,9 @@
#pragma once
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/power.hpp"
#include "core/node.hpp"
#include "utils/broadcasting.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/prelu.cpp
View file @
26669ae8
...
...
@@ -18,6 +18,7 @@
#include <iterator>
#include <memory>
#include "core/node.hpp"
#include "ngraph/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/add.hpp"
...
...
@@ -28,8 +29,6 @@
#include "ngraph/op/less.hpp"
#include "ngraph/op/multiply.hpp"
#include "ngraph/op/reshape.hpp"
#include "core/node.hpp"
#include "prelu.hpp"
#include "utils/broadcasting.hpp"
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/prelu.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/reciprocal.cpp
View file @
26669ae8
...
...
@@ -20,7 +20,6 @@
#include "ngraph/op/constant.hpp"
#include "ngraph/op/divide.hpp"
#include "ngraph/shape.hpp"
#include "utils/broadcasting.hpp"
#include "reciprocal.hpp"
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/reciprocal.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/reduce.cpp
View file @
26669ae8
...
...
@@ -22,7 +22,6 @@
#include "ngraph/op/constant.hpp"
#include "ngraph/op/divide.hpp"
#include "ngraph/shape.hpp"
#include "reduce.hpp"
#include "utils/broadcasting.hpp"
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/reduce.hpp
View file @
26669ae8
...
...
@@ -18,6 +18,7 @@
#include <memory>
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/abs.hpp"
#include "ngraph/op/exp.hpp"
...
...
@@ -28,8 +29,6 @@
#include "ngraph/op/product.hpp"
#include "ngraph/op/sqrt.hpp"
#include "ngraph/op/sum.hpp"
#include "core/node.hpp"
#include "utils/broadcasting.hpp"
#include "utils/reduction.hpp"
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/relu.hpp
View file @
26669ae8
...
...
@@ -16,11 +16,10 @@
#pragma once
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/relu.hpp"
#include "core/node.hpp"
namespace
ngraph
{
namespace
onnx_import
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/reshape.cpp
View file @
26669ae8
...
...
@@ -18,12 +18,11 @@
#include <memory>
#include <vector>
#include "exceptions.hpp"
#include "ngraph/axis_vector.hpp"
#include "ngraph/op/constant.hpp"
#include "ngraph/op/reshape.hpp"
#include "ngraph/shape.hpp"
#include "exceptions.hpp"
#include "reshape.hpp"
#include "utils/reshape.hpp"
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/reshape.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/selu.cpp
View file @
26669ae8
...
...
@@ -17,10 +17,9 @@
#include <memory>
#include <vector>
#include "core/node.hpp"
#include "ngraph/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/shape.hpp"
#include "ngraph/op/add.hpp"
#include "ngraph/op/broadcast.hpp"
#include "ngraph/op/constant.hpp"
...
...
@@ -29,11 +28,9 @@
#include "ngraph/op/minimum.hpp"
#include "ngraph/op/multiply.hpp"
#include "ngraph/op/subtract.hpp"
#include "core/node.hpp"
#include "utils/broadcasting.hpp"
#include "ngraph/shape.hpp"
#include "selu.hpp"
#include "utils/broadcasting.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/selu.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/shape.cpp
View file @
26669ae8
...
...
@@ -17,11 +17,10 @@
#include <memory>
#include "ngraph/node.hpp"
#include "ngraph/op/constant.hpp"
#include "ngraph/shape.hpp"
#include "ngraph/type/element_type.hpp"
#include "ngraph/op/constant.hpp"
#include "shape.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/shape.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/sigmoid.hpp
View file @
26669ae8
...
...
@@ -18,11 +18,10 @@
#include <memory>
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/sigmoid.hpp"
#include "core/node.hpp"
namespace
ngraph
{
namespace
onnx_import
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/sin.hpp
View file @
26669ae8
...
...
@@ -18,11 +18,10 @@
#include <memory>
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/sin.hpp"
#include "core/node.hpp"
namespace
ngraph
{
namespace
onnx_import
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/size.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/slice.cpp
View file @
26669ae8
...
...
@@ -20,7 +20,6 @@
#include "ngraph/node.hpp"
#include "ngraph/op/slice.hpp"
#include "slice.hpp"
#include "utils/common.hpp"
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/slice.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/softmax.cpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#include <numeric>
#include "ngraph/op/softmax.hpp"
#include "exceptions.hpp"
#include "ngraph/op/softmax.hpp"
#include "softmax.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/softplus.cpp
View file @
26669ae8
...
...
@@ -17,12 +17,10 @@
#include <memory>
#include "ngraph/node.hpp"
#include "ngraph/op/add.hpp"
#include "ngraph/op/constant.hpp"
#include "ngraph/op/exp.hpp"
#include "ngraph/op/log.hpp"
#include "utils/broadcasting.hpp"
#include "softplus.hpp"
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/softplus.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/softsign.cpp
View file @
26669ae8
...
...
@@ -22,7 +22,6 @@
#include "ngraph/op/constant.hpp"
#include "ngraph/op/divide.hpp"
#include "ngraph/shape.hpp"
#include "utils/broadcasting.hpp"
#include "softsign.hpp"
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/softsign.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/split.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "ngraph/frontend/onnx_import/core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/sqrt.hpp
View file @
26669ae8
...
...
@@ -18,11 +18,10 @@
#include <memory>
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/sqrt.hpp"
#include "core/node.hpp"
namespace
ngraph
{
namespace
onnx_import
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/squeeze.cpp
View file @
26669ae8
...
...
@@ -21,11 +21,10 @@
#include <set>
#include <vector>
#include "exceptions.hpp"
#include "ngraph/axis_vector.hpp"
#include "ngraph/op/reshape.hpp"
#include "ngraph/shape.hpp"
#include "exceptions.hpp"
#include "squeeze.hpp"
#include "utils/reshape.hpp"
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/squeeze.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/sub.hpp
View file @
26669ae8
...
...
@@ -16,10 +16,9 @@
#pragma once
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/subtract.hpp"
#include "core/node.hpp"
#include "utils/broadcasting.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/sum.hpp
View file @
26669ae8
...
...
@@ -16,10 +16,9 @@
#pragma once
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/add.hpp"
#include "core/node.hpp"
#include "utils/variadic.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/tan.hpp
View file @
26669ae8
...
...
@@ -18,11 +18,10 @@
#include <memory>
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/tan.hpp"
#include "core/node.hpp"
namespace
ngraph
{
namespace
onnx_import
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/tanh.hpp
View file @
26669ae8
...
...
@@ -18,11 +18,10 @@
#include <memory>
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/tanh.hpp"
#include "core/node.hpp"
namespace
ngraph
{
namespace
onnx_import
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/thresholded_relu.cpp
View file @
26669ae8
...
...
@@ -17,18 +17,15 @@
#include <memory>
#include <vector>
#include "core/node.hpp"
#include "ngraph/node.hpp"
#include "ngraph/op/broadcast.hpp"
#include "ngraph/op/constant.hpp"
#include "ngraph/op/convert.hpp"
#include "ngraph/op/greater.hpp"
#include "ngraph/op/multiply.hpp"
#include "core/node.hpp"
#include "utils/broadcasting.hpp"
#include "thresholded_relu.hpp"
#include "utils/broadcasting.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/thresholded_relu.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/transpose.cpp
View file @
26669ae8
...
...
@@ -18,7 +18,6 @@
#include <vector>
#include "ngraph/node.hpp"
#include "transpose.hpp"
#include "utils/reshape.hpp"
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/transpose.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/unsqueeze.cpp
View file @
26669ae8
...
...
@@ -16,11 +16,10 @@
#include <numeric>
#include "ngraph/op/reshape.hpp"
#include "utils/reshape.hpp"
#include "exceptions.hpp"
#include "ngraph/op/reshape.hpp"
#include "unsqueeze.hpp"
#include "utils/reshape.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/unsqueeze.hpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/op/xor.hpp
View file @
26669ae8
...
...
@@ -16,12 +16,11 @@
#pragma once
#include "core/node.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/and.hpp"
#include "ngraph/op/not.hpp"
#include "ngraph/op/or.hpp"
#include "core/node.hpp"
#include "utils/broadcasting.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/ops_bridge.hpp
View file @
26669ae8
...
...
@@ -21,9 +21,8 @@
#include <string>
#include <unordered_map>
#include "ngraph/except.hpp"
#include "core/operator_set.hpp"
#include "ngraph/except.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/utils/broadcasting.cpp
View file @
26669ae8
...
...
@@ -18,11 +18,10 @@
#include <numeric>
#include <vector>
#include "broadcasting.hpp"
#include "ngraph/axis_vector.hpp"
#include "ngraph/op/broadcast.hpp"
#include "ngraph/op/reshape.hpp"
#include "broadcasting.hpp"
#include "reshape.hpp"
/// \brief Calculate output shape of numpy - style broadcast operation.
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/utils/common.hpp
View file @
26669ae8
...
...
@@ -25,7 +25,6 @@
#include "ngraph/op/constant.hpp"
#include "ngraph/shape.hpp"
#include "utils/broadcasting.hpp"
namespace
ngraph
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/utils/convpool.cpp
View file @
26669ae8
...
...
@@ -16,12 +16,11 @@
#include <cmath>
#include "ngraph/coordinate_diff.hpp"
#include "ngraph/shape.hpp"
#include "convpool.hpp"
#include "core/attribute.hpp"
#include "core/node.hpp"
#include "ngraph/coordinate_diff.hpp"
#include "ngraph/shape.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/utils/convpool.hpp
View file @
26669ae8
...
...
@@ -18,13 +18,12 @@
#include <string>
#include "core/attribute.hpp"
#include "core/node.hpp"
#include "ngraph/coordinate_diff.hpp"
#include "ngraph/op/avg_pool.hpp"
#include "ngraph/shape.hpp"
#include "core/attribute.hpp"
#include "core/node.hpp"
namespace
ngraph
{
namespace
onnx_import
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/utils/reduction.hpp
View file @
26669ae8
...
...
@@ -25,15 +25,14 @@
#include <type_traits> // std::enable_if, std::is_base_of
#include <vector>
#include "core/node.hpp"
#include "exceptions.hpp"
#include "ngraph/axis_set.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/convert.hpp"
#include "ngraph/op/reshape.hpp"
#include "ngraph/op/util/arithmetic_reduction.hpp"
#include "ngraph/shape.hpp"
#include "core/node.hpp"
#include "exceptions.hpp"
#include "utils/common.hpp"
#include "utils/reshape.hpp"
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/utils/reshape.cpp
View file @
26669ae8
...
...
@@ -22,10 +22,9 @@
#include <numeric>
#include <vector>
#include "exceptions.hpp"
#include "ngraph/op/reshape.hpp"
#include "ngraph/op/slice.hpp"
#include "exceptions.hpp"
#include "utils/common.hpp"
#include "utils/reshape.hpp"
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnx_import/utils/variadic.hpp
View file @
26669ae8
...
...
@@ -18,14 +18,12 @@
#include <numeric>
#include "core/node.hpp"
#include "ngraph/coordinate_diff.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/shape.hpp"
#include "ngraph/node_vector.hpp"
#include "ngraph/op/add.hpp"
#include "core/node.hpp"
#include "ngraph/shape.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnxifi/backend_manager.cpp
View file @
26669ae8
...
...
@@ -14,16 +14,14 @@
// limitations under the License.
//*****************************************************************************
#include <cstdlib> // std::size_t, std::uintptr_t
#include <stdexcept> // std::invalid_agrument, std::out_of_rage
#include <cstdlib> // std::size_t, std::uintptr_t
#include <onnxifi.h>
#include "ngraph/runtime/backend_manager.hpp"
#include <stdexcept> // std::invalid_agrument, std::out_of_rage
#include "backend.hpp"
#include "backend_manager.hpp"
#include "exceptions.hpp"
#include "ngraph/runtime/backend_manager.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnxifi/backend_manager.hpp
View file @
26669ae8
...
...
@@ -19,12 +19,10 @@
#include <cstddef> // std::size_t, std::uintptr_t
#include <map> // std::map
#include <mutex> // std::mutex
#include <onnxifi.h>
#include "ngraph/runtime/backend.hpp"
#include "backend.hpp"
#include "ngraph/runtime/backend.hpp"
namespace
ngraph
{
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnxifi/onnxifi.cpp
View file @
26669ae8
...
...
@@ -16,9 +16,8 @@
#include <cstddef>
#include <cstdint>
#include <stdexcept>
#include <onnxifi.h>
#include <stdexcept>
#include "backend_manager.hpp"
#include "exceptions.hpp"
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/frontend/onnxifi/tensor.hpp
View file @
26669ae8
...
...
@@ -17,7 +17,6 @@
#pragma once
#include <memory>
#include <onnxifi.h>
#include "ngraph/runtime/backend.hpp"
...
...
This diff is collapsed.
Click to expand it.
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