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
e36051a0
Commit
e36051a0
authored
Nov 16, 2018
by
Adam Rogowiec
Committed by
Robert Kimball
Nov 16, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add operator Size. (#2067)
parent
47a527d8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
96 additions
and
0 deletions
+96
-0
CMakeLists.txt
src/ngraph/frontend/onnx_import/CMakeLists.txt
+2
-0
size.cpp
src/ngraph/frontend/onnx_import/op/size.cpp
+53
-0
size.hpp
src/ngraph/frontend/onnx_import/op/size.hpp
+39
-0
ops_bridge.cpp
src/ngraph/frontend/onnx_import/ops_bridge.cpp
+2
-0
No files found.
src/ngraph/frontend/onnx_import/CMakeLists.txt
View file @
e36051a0
...
...
@@ -116,6 +116,8 @@ add_library(onnx_import STATIC
op/shape.cpp
op/sigmoid.hpp
op/sin.hpp
op/size.cpp
op/size.hpp
op/slice.cpp
op/slice.hpp
op/softmax.cpp
...
...
src/ngraph/frontend/onnx_import/op/size.cpp
0 → 100644
View file @
e36051a0
//*****************************************************************************
// Copyright 2017-2018 Intel Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//*****************************************************************************
#include <cstdint>
#include <memory>
#include <vector>
#include "ngraph/node.hpp"
#include "ngraph/op/constant.hpp"
#include "ngraph/shape.hpp"
#include "ngraph/type/element_type.hpp"
#include "shape.hpp"
namespace
ngraph
{
namespace
onnx_import
{
namespace
op
{
namespace
set_1
{
NodeVector
size
(
const
Node
&
node
)
{
auto
data
=
node
.
get_ng_inputs
().
at
(
0
);
std
::
int64_t
tensor_elements_count
{
static_cast
<
std
::
int64_t
>
(
shape_size
(
data
->
get_shape
()))};
return
{
std
::
make_shared
<
ngraph
::
op
::
Constant
>
(
ngraph
::
element
::
i64
,
Shape
{},
std
::
vector
<
std
::
int64_t
>
{
tensor_elements_count
})};
}
}
// namespace set_1
}
//namespace op
}
// namespace onnx_import
}
// namespace ngraph
src/ngraph/frontend/onnx_import/op/size.hpp
0 → 100644
View file @
e36051a0
//*****************************************************************************
// Copyright 2017-2018 Intel Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//*****************************************************************************
#pragma once
#include "ngraph/node_vector.hpp"
#include "core/node.hpp"
namespace
ngraph
{
namespace
onnx_import
{
namespace
op
{
namespace
set_1
{
NodeVector
size
(
const
Node
&
node
);
}
// namespace set_1
}
//namespace op
}
// namespace onnx_import
}
// namespace ngraph
src/ngraph/frontend/onnx_import/ops_bridge.cpp
View file @
e36051a0
...
...
@@ -75,6 +75,7 @@
#include "op/shape.hpp"
#include "op/sigmoid.hpp"
#include "op/sin.hpp"
#include "op/size.hpp"
#include "op/slice.hpp"
#include "op/softmax.hpp"
#include "op/softplus.hpp"
...
...
@@ -211,6 +212,7 @@ namespace ngraph
REGISTER_OPERATOR
(
"Shape"
,
1
,
shape
);
REGISTER_OPERATOR
(
"Sigmoid"
,
1
,
sigmoid
);
REGISTER_OPERATOR
(
"Sin"
,
1
,
sin
);
REGISTER_OPERATOR
(
"Size"
,
1
,
size
);
REGISTER_OPERATOR
(
"Slice"
,
1
,
slice
);
REGISTER_OPERATOR
(
"Softmax"
,
1
,
softmax
);
REGISTER_OPERATOR
(
"Softplus"
,
1
,
softplus
);
...
...
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