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
3a53de5e
Commit
3a53de5e
authored
Aug 23, 2017
by
Scott Cyphers
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Style
parent
43eb19bd
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
12 deletions
+7
-12
function.hpp
src/ngraph/function.hpp
+1
-2
node.hpp
src/ngraph/node.hpp
+3
-4
op.hpp
src/ngraph/op.hpp
+1
-2
shape.hpp
src/ngraph/shape.hpp
+1
-2
type.hpp
src/ngraph/type.hpp
+1
-2
No files found.
src/ngraph/function.hpp
View file @
3a53de5e
...
@@ -60,4 +60,4 @@ namespace ngraph
...
@@ -60,4 +60,4 @@ namespace ngraph
Result
m_result
;
Result
m_result
;
};
};
}
// end namespace ngraph
}
\ No newline at end of file
src/ngraph/node.hpp
View file @
3a53de5e
...
@@ -28,8 +28,8 @@ namespace ngraph
...
@@ -28,8 +28,8 @@ namespace ngraph
using
ptr
=
std
::
shared_ptr
<
Node
>
;
using
ptr
=
std
::
shared_ptr
<
Node
>
;
Node
(
const
std
::
vector
<
Node
::
ptr
>&
arguments
,
ValueType
::
ptr
type
=
0
)
Node
(
const
std
::
vector
<
Node
::
ptr
>&
arguments
,
ValueType
::
ptr
type
=
0
)
:
m_arguments
(
arguments
)
:
TypedValueMixin
(
type
)
,
TypedValueMixin
(
type
)
,
m_arguments
(
arguments
)
{
{
}
}
...
@@ -51,4 +51,4 @@ namespace ngraph
...
@@ -51,4 +51,4 @@ namespace ngraph
{
{
}
}
};
};
}
}
\ No newline at end of file
src/ngraph/op.hpp
View file @
3a53de5e
...
@@ -82,4 +82,4 @@ namespace ngraph
...
@@ -82,4 +82,4 @@ namespace ngraph
{
{
extern
Dot
dot
;
extern
Dot
dot
;
}
}
}
}
\ No newline at end of file
src/ngraph/shape.hpp
View file @
3a53de5e
...
@@ -40,4 +40,4 @@ namespace ngraph
...
@@ -40,4 +40,4 @@ namespace ngraph
protected
:
protected
:
std
::
vector
<
size_t
>
m_sizes
;
std
::
vector
<
size_t
>
m_sizes
;
};
};
}
}
\ No newline at end of file
src/ngraph/type.hpp
View file @
3a53de5e
...
@@ -133,4 +133,4 @@ namespace ngraph
...
@@ -133,4 +133,4 @@ namespace ngraph
protected
:
protected
:
ValueType
::
ptr
m_type
;
ValueType
::
ptr
m_type
;
};
};
}
}
\ No newline at end of file
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