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
d38cd579
Commit
d38cd579
authored
Oct 12, 2019
by
baojun
Committed by
Scott Cyphers
Oct 12, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove check on static rank (#3766)
parent
81818b79
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
5 deletions
+1
-5
softmax.cpp
src/ngraph/op/softmax.cpp
+1
-5
No files found.
src/ngraph/op/softmax.cpp
View file @
d38cd579
...
...
@@ -76,11 +76,7 @@ void op::v0::Softmax::set_axes(const AxisSet& axes)
void
op
::
v0
::
Softmax
::
validate_and_infer_types
()
{
const
PartialShape
&
input_shape
=
get_input_partial_shape
(
0
);
NODE_VALIDATION_CHECK
(
this
,
input_shape
.
rank
().
is_static
(),
"Input node rank must be static (input_shape="
,
input_shape
,
")."
);
if
(
input_shape
.
is_dynamic
())
{
set_output_type
(
0
,
get_input_element_type
(
0
),
input_shape
);
...
...
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