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
910743cd
Commit
910743cd
authored
Feb 02, 2018
by
Jaikrishnan Menon
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into cpu_layout2
parents
2d5a886d
9a7ddbc0
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
0 deletions
+15
-0
graph-basics.rst
doc/sphinx/source/graph-basics.rst
+0
-0
avg_pool.cpp
src/ngraph/ops/avg_pool.cpp
+5
-0
convolution.cpp
src/ngraph/ops/convolution.cpp
+5
-0
max_pool.cpp
src/ngraph/ops/max_pool.cpp
+5
-0
No files found.
doc/sphinx/source/graph-basics.rst
View file @
910743cd
This diff is collapsed.
Click to expand it.
src/ngraph/ops/avg_pool.cpp
View file @
910743cd
...
...
@@ -201,6 +201,10 @@ op::AvgPool::AvgPool(const std::shared_ptr<Node>& arg, const Shape& window_shape
bool
op
::
AvgPool
::
is_functionally_identical
(
const
Node
&
other
)
const
{
// TODO: temporary workaround for MKLDNN issue
// remove 'return false' and uncomment below when fixed
return
false
;
/*
bool rc = true;
if (Node::is_functionally_identical(other))
{
...
...
@@ -215,6 +219,7 @@ bool op::AvgPool::is_functionally_identical(const Node& other) const
rc = false;
}
return rc;
*/
}
op
::
AvgPoolBprop
::
AvgPoolBprop
(
const
std
::
shared_ptr
<
Node
>&
arg
,
...
...
src/ngraph/ops/convolution.cpp
View file @
910743cd
...
...
@@ -371,6 +371,10 @@ std::shared_ptr<Node>
bool
op
::
Convolution
::
is_functionally_identical
(
const
Node
&
other
)
const
{
// TODO: temporary workaround for MKLDNN issue
// remove 'return false' and uncomment below when fixed
return
false
;
/*
bool rc = true;
if (Node::test_identical(other))
{
...
...
@@ -386,6 +390,7 @@ bool op::Convolution::is_functionally_identical(const Node& other) const
rc = false;
}
return rc;
*/
}
void
op
::
Convolution
::
generate_adjoints
(
autodiff
::
Adjoints
&
adjoints
,
...
...
src/ngraph/ops/max_pool.cpp
View file @
910743cd
...
...
@@ -159,6 +159,10 @@ op::MaxPool::MaxPool(const std::shared_ptr<Node>& arg, const Shape& window_shape
bool
op
::
MaxPool
::
is_functionally_identical
(
const
Node
&
other
)
const
{
// TODO: temporary workaround for MKLDNN issue
// remove 'return false' and uncomment below when fixed
return
false
;
/*
bool rc = true;
if (Node::test_identical(other))
{
...
...
@@ -171,6 +175,7 @@ bool op::MaxPool::is_functionally_identical(const Node& other) const
rc = false;
}
return rc;
*/
}
void
op
::
MaxPool
::
generate_adjoints
(
autodiff
::
Adjoints
&
adjoints
,
...
...
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