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
453a6a3c
Commit
453a6a3c
authored
Dec 08, 2018
by
Nick Korovaiko
Committed by
Robert Kimball
Dec 08, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make GOE extend from util::Op (#2153)
* make GOE extend from util::Op * fix build breaks
parent
a16c4961
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
get_output_element.cpp
python/pyngraph/ops/get_output_element.cpp
+1
-1
get_output_element.cpp
src/ngraph/op/get_output_element.cpp
+1
-1
get_output_element.hpp
src/ngraph/op/get_output_element.hpp
+2
-2
No files found.
python/pyngraph/ops/get_output_element.cpp
View file @
453a6a3c
...
...
@@ -26,7 +26,7 @@ void regclass_pyngraph_op_GetOutputElement(py::module m)
{
py
::
class_
<
ngraph
::
op
::
GetOutputElement
,
std
::
shared_ptr
<
ngraph
::
op
::
GetOutputElement
>
,
ngraph
::
Node
>
ngraph
::
op
::
Op
>
get_output_element
(
m
,
"GetOutputElement"
);
get_output_element
.
doc
()
=
"ngraph.impl.op.GetOutputElement wraps ngraph::op::GetOutputElement"
;
get_output_element
.
def
(
py
::
init
<
const
std
::
shared_ptr
<
ngraph
::
Node
>&
,
size_t
>
());
...
...
src/ngraph/op/get_output_element.cpp
View file @
453a6a3c
...
...
@@ -22,7 +22,7 @@ using namespace std;
using
namespace
ngraph
;
op
::
GetOutputElement
::
GetOutputElement
(
const
shared_ptr
<
Node
>&
arg
,
size_t
n
)
:
Node
(
"GetOutputElement"
,
{
arg
})
:
Op
(
"GetOutputElement"
,
{
arg
})
,
m_n
{
n
}
{
constructor_validate_and_infer_types
();
...
...
src/ngraph/op/get_output_element.hpp
View file @
453a6a3c
...
...
@@ -16,7 +16,7 @@
#pragma once
#include "ngraph/
node
.hpp"
#include "ngraph/
op/op
.hpp"
namespace
ngraph
{
...
...
@@ -25,7 +25,7 @@ namespace ngraph
NodeVector
get_output_elements
(
const
std
::
shared_ptr
<
Node
>&
mon
);
/// \brief Operation to get an output from a node.
class
GetOutputElement
:
public
Node
class
GetOutputElement
:
public
Op
{
public
:
/// \brief Constructs a get-tuple-element operation.
...
...
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