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
931d92f5
Commit
931d92f5
authored
Sep 14, 2017
by
Bob Kimball
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
address review comments
parent
cb901c1f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
input.hpp
src/ngraph/descriptor/input.hpp
+1
-0
output.hpp
src/ngraph/descriptor/output.hpp
+2
-0
No files found.
src/ngraph/descriptor/input.hpp
View file @
931d92f5
...
...
@@ -46,6 +46,7 @@ namespace ngraph
size_t
get_arg_index
()
const
{
return
m_arg_index
;
}
size_t
get_index
()
const
{
return
m_index
;
}
const
Output
&
get_output
()
const
{
return
m_output
;
}
Output
&
get_output
()
{
return
m_output
;
}
protected
:
Node
*
m_node
;
// The node we are an input for
...
...
src/ngraph/descriptor/output.hpp
View file @
931d92f5
...
...
@@ -26,6 +26,8 @@ namespace ngraph
// Describes an output tensor of an op
class
Output
{
// For some odd reason emplace_back is requiring a copy constructor
// it should not. See issue #111 for details
// Output(const Output&) = delete;
// Output& operator=(const Output&) = delete;
...
...
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