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
520db227
Commit
520db227
authored
Aug 02, 2019
by
Michał Karzyński
Committed by
Scott Cyphers
Aug 02, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ONNX] Remove unused includes (#3353)
* [ONNX] Remove unused includes * Update headers * Clang format
parent
059a9653
Hide whitespace changes
Inline
Side-by-side
Showing
25 changed files
with
2 additions
and
54 deletions
+2
-54
graph.cpp
src/ngraph/frontend/onnx_import/core/graph.cpp
+0
-1
onnx.cpp
src/ngraph/frontend/onnx_import/onnx.cpp
+0
-1
cast.cpp
src/ngraph/frontend/onnx_import/op/cast.cpp
+0
-1
conv_transpose.cpp
src/ngraph/frontend/onnx_import/op/conv_transpose.cpp
+0
-1
dequantize_linear.cpp
src/ngraph/frontend/onnx_import/op/dequantize_linear.cpp
+0
-4
instance_norm.cpp
src/ngraph/frontend/onnx_import/op/instance_norm.cpp
+0
-2
lp_norm.cpp
src/ngraph/frontend/onnx_import/op/lp_norm.cpp
+0
-1
lp_pool.cpp
src/ngraph/frontend/onnx_import/op/lp_pool.cpp
+0
-1
lrn.cpp
src/ngraph/frontend/onnx_import/op/lrn.cpp
+0
-1
lstm.cpp
src/ngraph/frontend/onnx_import/op/lstm.cpp
+0
-1
onehot.cpp
src/ngraph/frontend/onnx_import/op/onehot.cpp
+0
-1
prelu.cpp
src/ngraph/frontend/onnx_import/op/prelu.cpp
+0
-3
quant_conv.cpp
src/ngraph/frontend/onnx_import/op/quant_conv.cpp
+0
-5
quantize_linear.cpp
src/ngraph/frontend/onnx_import/op/quantize_linear.cpp
+0
-3
selu.cpp
src/ngraph/frontend/onnx_import/op/selu.cpp
+0
-3
slice.cpp
src/ngraph/frontend/onnx_import/op/slice.cpp
+0
-1
split.cpp
src/ngraph/frontend/onnx_import/op/split.cpp
+0
-1
thresholded_relu.cpp
src/ngraph/frontend/onnx_import/op/thresholded_relu.cpp
+0
-3
topk.cpp
src/ngraph/frontend/onnx_import/op/topk.cpp
+0
-2
transpose.cpp
src/ngraph/frontend/onnx_import/op/transpose.cpp
+0
-1
ops_bridge.cpp
src/ngraph/frontend/onnx_import/ops_bridge.cpp
+0
-1
convpool.cpp
src/ngraph/frontend/onnx_import/utils/convpool.cpp
+2
-6
convpool.hpp
src/ngraph/frontend/onnx_import/utils/convpool.hpp
+0
-5
matmul_factory.cpp
src/ngraph/frontend/onnx_import/utils/matmul_factory.cpp
+0
-1
reshape.cpp
src/ngraph/frontend/onnx_import/utils/reshape.cpp
+0
-4
No files found.
src/ngraph/frontend/onnx_import/core/graph.cpp
View file @
520db227
...
...
@@ -15,7 +15,6 @@
//*****************************************************************************
#include <functional>
#include <set>
#include "graph.hpp"
#include "node.hpp"
...
...
src/ngraph/frontend/onnx_import/onnx.cpp
View file @
520db227
...
...
@@ -21,7 +21,6 @@
#include "core/graph.hpp"
#include "core/model.hpp"
#include "core/node.hpp"
#include "ngraph/except.hpp"
#include "onnx.hpp"
#include "ops_bridge.hpp"
...
...
src/ngraph/frontend/onnx_import/op/cast.cpp
View file @
520db227
...
...
@@ -16,7 +16,6 @@
#include <memory>
#include "cast.hpp"
#include "exceptions.hpp"
#include "ngraph/op/convert.hpp"
#include "ngraph/type/element_type.hpp"
#include "utils/common.hpp"
...
...
src/ngraph/frontend/onnx_import/op/conv_transpose.cpp
View file @
520db227
...
...
@@ -29,7 +29,6 @@
#include "ngraph/op/util/attr_types.hpp"
#include "ngraph/op/util/broadcasting.hpp"
#include "ngraph/shape.hpp"
#include "ngraph/strides.hpp"
namespace
ngraph
{
...
...
src/ngraph/frontend/onnx_import/op/dequantize_linear.cpp
View file @
520db227
...
...
@@ -14,15 +14,11 @@
// limitations under the License.
//*****************************************************************************
#include <cstddef>
#include <cstdint>
#include <iterator>
#include <memory>
#include "exceptions.hpp"
#include "ngraph/axis_set.hpp"
#include "ngraph/builder/make_constant.hpp"
#include "ngraph/op/constant.hpp"
#include "ngraph/op/convert.hpp"
#include "ngraph/op/dequantize.hpp"
#include "ngraph/shape.hpp"
...
...
src/ngraph/frontend/onnx_import/op/instance_norm.cpp
View file @
520db227
...
...
@@ -14,7 +14,6 @@
// limitations under the License.
//*****************************************************************************
#include <cmath>
#include <cstddef>
#include "exceptions.hpp"
...
...
@@ -25,7 +24,6 @@
#include "ngraph/op/broadcast.hpp"
#include "ngraph/op/constant.hpp"
#include "ngraph/op/divide.hpp"
#include "ngraph/op/divide.hpp"
#include "ngraph/op/multiply.hpp"
#include "ngraph/op/sqrt.hpp"
#include "ngraph/op/subtract.hpp"
...
...
src/ngraph/frontend/onnx_import/op/lp_norm.cpp
View file @
520db227
...
...
@@ -14,7 +14,6 @@
// limitations under the License.
//*****************************************************************************
#include <cmath>
#include <cstddef>
#include <cstdint>
...
...
src/ngraph/frontend/onnx_import/op/lp_pool.cpp
View file @
520db227
...
...
@@ -14,7 +14,6 @@
// limitations under the License.
//*****************************************************************************
#include <cmath>
#include <cstddef>
#include <cstdint>
#include <memory>
...
...
src/ngraph/frontend/onnx_import/op/lrn.cpp
View file @
520db227
...
...
@@ -16,7 +16,6 @@
#include <memory>
#include "core/node.hpp"
#include "lrn.hpp"
#include "ngraph/op/lrn.hpp"
...
...
src/ngraph/frontend/onnx_import/op/lstm.cpp
View file @
520db227
...
...
@@ -26,7 +26,6 @@
#include "exceptions.hpp"
#include "lstm.hpp"
#include "ngraph/axis_set.hpp"
#include "ngraph/builder/reshape.hpp"
#include "ngraph/builder/split.hpp"
#include "ngraph/op/concat.hpp"
#include "ngraph/op/constant.hpp"
...
...
src/ngraph/frontend/onnx_import/op/onehot.cpp
View file @
520db227
...
...
@@ -28,7 +28,6 @@
#include "ngraph/op/subtract.hpp"
#include "ngraph/op/util/broadcasting.hpp"
#include "onehot.hpp"
#include "utils/reshape.hpp"
namespace
ngraph
{
...
...
src/ngraph/frontend/onnx_import/op/prelu.cpp
View file @
520db227
...
...
@@ -14,11 +14,8 @@
// limitations under the License.
//*****************************************************************************
#include <algorithm>
#include <iterator>
#include <memory>
#include "core/node.hpp"
#include "ngraph/op/fused/prelu.hpp"
#include "prelu.hpp"
...
...
src/ngraph/frontend/onnx_import/op/quant_conv.cpp
View file @
520db227
...
...
@@ -23,15 +23,10 @@
#include "ngraph/frontend/onnx_import/exceptions.hpp"
#include "ngraph/frontend/onnx_import/op/conv.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/divide.hpp"
#include "ngraph/op/multiply.hpp"
#include "ngraph/op/quantized_convolution.hpp"
#include "ngraph/op/slice.hpp"
#include "ngraph/op/util/attr_types.hpp"
#include "ngraph/op/util/broadcasting.hpp"
#include "ngraph/strides.hpp"
#include "quant_conv.hpp"
...
...
src/ngraph/frontend/onnx_import/op/quantize_linear.cpp
View file @
520db227
...
...
@@ -14,12 +14,9 @@
// limitations under the License.
//*****************************************************************************
#include <cstddef>
#include <cstdint>
#include <iterator>
#include <memory>
#include "exceptions.hpp"
#include "ngraph/axis_set.hpp"
#include "ngraph/op/quantize.hpp"
#include "ngraph/shape.hpp"
...
...
src/ngraph/frontend/onnx_import/op/selu.cpp
View file @
520db227
...
...
@@ -17,10 +17,7 @@
#include <memory>
#include <vector>
#include "core/node.hpp"
#include "ngraph/node.hpp"
#include "ngraph/op/add.hpp"
#include "ngraph/op/broadcast.hpp"
#include "ngraph/op/constant.hpp"
#include "ngraph/op/exp.hpp"
#include "ngraph/op/maximum.hpp"
...
...
src/ngraph/frontend/onnx_import/op/slice.cpp
View file @
520db227
...
...
@@ -18,7 +18,6 @@
#include <memory>
#include <vector>
#include "ngraph/log.hpp"
#include "ngraph/node.hpp"
#include "ngraph/op/slice.hpp"
#include "slice.hpp"
...
...
src/ngraph/frontend/onnx_import/op/split.cpp
View file @
520db227
...
...
@@ -17,7 +17,6 @@
#include <cstdint>
#include <vector>
#include "exceptions.hpp"
#include "ngraph/op/fused/split.hpp"
#include "op/split.hpp"
...
...
src/ngraph/frontend/onnx_import/op/thresholded_relu.cpp
View file @
520db227
...
...
@@ -17,9 +17,6 @@
#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"
...
...
src/ngraph/frontend/onnx_import/op/topk.cpp
View file @
520db227
...
...
@@ -16,11 +16,9 @@
#include <cstdint>
#include <memory>
#include <vector>
#include "exceptions.hpp"
#include "ngraph/node.hpp"
#include "ngraph/op/constant.hpp"
#include "ngraph/op/get_output_element.hpp"
#include "ngraph/op/topk.hpp"
#include "ngraph/type/element_type.hpp"
...
...
src/ngraph/frontend/onnx_import/op/transpose.cpp
View file @
520db227
...
...
@@ -20,7 +20,6 @@
#include "ngraph/builder/reshape.hpp"
#include "ngraph/node.hpp"
#include "transpose.hpp"
#include "utils/reshape.hpp"
namespace
ngraph
{
...
...
src/ngraph/frontend/onnx_import/ops_bridge.cpp
View file @
520db227
...
...
@@ -85,7 +85,6 @@
#include "op/not.hpp"
#include "op/onehot.hpp"
#include "op/or.hpp"
#include "op/pad.cpp"
#include "op/pad.hpp"
#include "op/pow.hpp"
#include "op/prelu.hpp"
...
...
src/ngraph/frontend/onnx_import/utils/convpool.cpp
View file @
520db227
...
...
@@ -14,16 +14,12 @@
// limitations under the License.
//*****************************************************************************
#include <cmath>
#include <string>
#include <unordered_map>
#include "convpool.hpp"
#include "core/attribute.hpp"
#include "core/node.hpp"
#include "exceptions.hpp"
#include "ngraph/
coordinate_diff
.hpp"
#include "ngraph/s
hape
.hpp"
#include "ngraph/
op/util/attr_types
.hpp"
#include "ngraph/s
trides
.hpp"
#include "ngraph/validation_util.hpp"
namespace
ngraph
...
...
src/ngraph/frontend/onnx_import/utils/convpool.hpp
View file @
520db227
...
...
@@ -16,13 +16,8 @@
#pragma once
#include <string>
#include "core/attribute.hpp"
#include "core/node.hpp"
#include "ngraph/coordinate_diff.hpp"
#include "ngraph/op/avg_pool.hpp"
#include "ngraph/op/util/attr_types.hpp"
#include "ngraph/shape.hpp"
#include "ngraph/strides.hpp"
...
...
src/ngraph/frontend/onnx_import/utils/matmul_factory.cpp
View file @
520db227
...
...
@@ -17,7 +17,6 @@
#include <cstddef>
#include <iterator>
#include <memory>
#include <vector>
#include "matmul_factory.hpp"
#include "ngraph/builder/make_constant.hpp"
...
...
src/ngraph/frontend/onnx_import/utils/reshape.cpp
View file @
520db227
...
...
@@ -15,14 +15,10 @@
//*****************************************************************************
#include <algorithm>
#include <cmath>
#include <cstddef>
#include <functional>
#include <iterator>
#include <numeric>
#include <vector>
#include "exceptions.hpp"
#include "ngraph/builder/reshape.hpp"
#include "ngraph/op/reshape.hpp"
#include "utils/common.hpp"
...
...
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