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
5a5579f7
Unverified
Commit
5a5579f7
authored
Feb 29, 2020
by
Jayaram Bobba
Committed by
GitHub
Feb 29, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Handle negative axis in ArithmeticReductionKeepDims (#4393)
Co-authored-by:
Ashok Emani
<
ashok.emani@intel.com
>
parent
6f680b9e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
4 deletions
+16
-4
arithmetic_reductions_keep_dims.cpp
src/ngraph/op/util/arithmetic_reductions_keep_dims.cpp
+16
-4
No files found.
src/ngraph/op/util/arithmetic_reductions_keep_dims.cpp
View file @
5a5579f7
...
...
@@ -16,6 +16,7 @@
#include "ngraph/op/util/arithmetic_reductions_keep_dims.hpp"
#include "ngraph/op/constant.hpp"
#include "ngraph/validation_util.hpp"
using
namespace
std
;
using
namespace
ngraph
;
...
...
@@ -33,7 +34,6 @@ void op::util::ArithmeticReductionKeepDims::validate_and_infer_types()
{
if
(
m_keep_dims
)
{
auto
reduction_axes
=
get_reduction_axes
();
auto
input_shape
=
get_input_partial_shape
(
0
);
auto
input_rank
=
input_shape
.
rank
();
PartialShape
result_shape
{
PartialShape
::
dynamic
()};
...
...
@@ -43,11 +43,19 @@ void op::util::ArithmeticReductionKeepDims::validate_and_infer_types()
if
(
input_rank
.
is_static
()
&&
reduction_axes_constant
())
{
std
::
vector
<
Dimension
>
dims
;
for
(
auto
axis
:
reduction_axes
)
AxisSet
reduction_axes
;
auto
reduction_axes_val
=
as_type
<
op
::
Constant
>
(
input_value
(
1
).
get_node
())
->
cast_vector
<
int64_t
>
();
for
(
auto
axis
:
reduction_axes_val
)
{
try
{
axis
=
normalize_axis
(
this
,
axis
,
input_rank
);
}
catch
(
const
ngraph_error
&
)
{
NODE_VALIDATION_CHECK
(
this
,
axis
<
size_t
(
input_rank
)
,
false
,
"Reduction axis ("
,
axis
,
") is out of bounds "
,
...
...
@@ -57,6 +65,10 @@ void op::util::ArithmeticReductionKeepDims::validate_and_infer_types()
reduction_axes
,
")"
);
}
reduction_axes
.
insert
(
axis
);
}
std
::
vector
<
Dimension
>
dims
;
for
(
size_t
i
=
0
;
i
<
size_t
(
input_rank
);
i
++
)
{
if
(
reduction_axes
.
count
(
i
)
==
0
)
...
...
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