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
22ea8786
Commit
22ea8786
authored
Jul 22, 2019
by
Scott Cyphers
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
style
parent
7614020f
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
2 additions
and
11 deletions
+2
-11
add.hpp
src/ngraph/op/add.hpp
+0
-1
lrn.hpp
src/ngraph/op/lrn.hpp
+0
-1
max_pool.hpp
src/ngraph/op/max_pool.hpp
+0
-3
maximum.hpp
src/ngraph/op/maximum.hpp
+0
-1
minimum.hpp
src/ngraph/op/minimum.hpp
+0
-1
multiply.hpp
src/ngraph/op/multiply.hpp
+0
-1
not_equal.cpp
src/ngraph/op/not_equal.cpp
+2
-2
one_hot.hpp
src/ngraph/op/one_hot.hpp
+0
-1
No files found.
src/ngraph/op/add.hpp
View file @
22ea8786
...
...
@@ -52,7 +52,6 @@ namespace ngraph
std
::
shared_ptr
<
Node
>
copy_with_new_args
(
const
NodeVector
&
new_args
)
const
override
;
virtual
bool
is_commutative
()
const
override
{
return
true
;
}
protected
:
virtual
void
generate_adjoints
(
autodiff
::
Adjoints
&
adjoints
,
const
NodeVector
&
deltas
)
override
;
...
...
src/ngraph/op/lrn.hpp
View file @
22ea8786
...
...
@@ -60,7 +60,6 @@ namespace ngraph
void
set_bias
(
double
bias
)
{
m_bias
=
bias
;
}
size_t
get_nsize
()
const
{
return
m_size
;
}
void
set_nsize
(
size_t
size
)
{
m_size
=
size
;
}
protected
:
virtual
void
generate_adjoints
(
autodiff
::
Adjoints
&
adjoints
,
const
NodeVector
&
deltas
)
override
;
...
...
src/ngraph/op/max_pool.hpp
View file @
22ea8786
...
...
@@ -31,7 +31,6 @@ namespace ngraph
NGRAPH_API
static
const
std
::
string
type_name
;
const
std
::
string
&
description
()
const
override
{
return
type_name
;
}
/// \brief Constructs a batched max pooling operation.
MaxPool
()
=
default
;
...
...
@@ -145,7 +144,6 @@ namespace ngraph
NGRAPH_API
static
const
std
::
string
type_name
;
const
std
::
string
&
description
()
const
override
{
return
type_name
;
}
MaxPoolBackprop
()
=
default
;
MaxPoolBackprop
(
const
Output
<
Node
>&
arg_forward
,
...
...
@@ -179,7 +177,6 @@ namespace ngraph
void
set_padding_below
(
const
Shape
&
padding_below
)
{
m_padding_below
=
padding_below
;
}
const
Shape
&
get_padding_above
()
const
{
return
m_padding_above
;
}
void
set_padding_above
(
const
Shape
&
padding_above
)
{
m_padding_above
=
padding_above
;
}
protected
:
Shape
m_window_shape
;
Strides
m_window_movement_strides
;
...
...
src/ngraph/op/maximum.hpp
View file @
22ea8786
...
...
@@ -44,7 +44,6 @@ namespace ngraph
copy_with_new_args
(
const
NodeVector
&
new_args
)
const
override
;
virtual
bool
is_commutative
()
const
override
{
return
true
;
}
protected
:
virtual
void
generate_adjoints
(
autodiff
::
Adjoints
&
adjoints
,
const
NodeVector
&
deltas
)
override
;
...
...
src/ngraph/op/minimum.hpp
View file @
22ea8786
...
...
@@ -44,7 +44,6 @@ namespace ngraph
copy_with_new_args
(
const
NodeVector
&
new_args
)
const
override
;
virtual
bool
is_commutative
()
const
override
{
return
true
;
}
protected
:
virtual
void
generate_adjoints
(
autodiff
::
Adjoints
&
adjoints
,
const
NodeVector
&
deltas
)
override
;
...
...
src/ngraph/op/multiply.hpp
View file @
22ea8786
...
...
@@ -44,7 +44,6 @@ namespace ngraph
copy_with_new_args
(
const
NodeVector
&
new_args
)
const
override
;
virtual
bool
is_commutative
()
const
override
{
return
true
;
}
protected
:
virtual
void
generate_adjoints
(
autodiff
::
Adjoints
&
adjoints
,
const
NodeVector
&
deltas
)
override
;
...
...
src/ngraph/op/not_equal.cpp
View file @
22ea8786
...
...
@@ -21,8 +21,8 @@ using namespace ngraph;
const
string
op
::
NotEqual
::
type_name
{
"NotEqual"
};
op
::
NotEqual
::
NotEqual
(
const
Output
<
Node
>
&
arg0
,
const
Output
<
Node
>
&
arg1
,
op
::
NotEqual
::
NotEqual
(
const
Output
<
Node
>
&
arg0
,
const
Output
<
Node
>
&
arg1
,
const
AutoBroadcastSpec
&
autob
)
:
BinaryElementwiseComparison
(
arg0
,
arg1
,
autob
)
{
...
...
src/ngraph/op/one_hot.hpp
View file @
22ea8786
...
...
@@ -64,7 +64,6 @@ namespace ngraph
/// \return The index of the one-hot axis.
size_t
get_one_hot_axis
()
const
{
return
m_one_hot_axis
;
}
void
set_one_hot_axis
(
size_t
one_hot_axis
)
{
m_one_hot_axis
=
one_hot_axis
;
}
protected
:
PartialShape
m_shape
;
size_t
m_one_hot_axis
;
...
...
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