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
0920ed1c
Unverified
Commit
0920ed1c
authored
Oct 05, 2018
by
Robert Kimball
Committed by
GitHub
Oct 05, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
address klocwork issue (#1748)
parent
15da6cfe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
40 deletions
+38
-40
rnn.cpp
src/ngraph/runtime/cpu/op/rnn.cpp
+12
-14
rnn.hpp
src/ngraph/runtime/cpu/op/rnn.hpp
+26
-26
No files found.
src/ngraph/runtime/cpu/op/rnn.cpp
View file @
0920ed1c
...
...
@@ -47,14 +47,14 @@ op::Rnn::Rnn(std::shared_ptr<Node> src_layer,
std
::
shared_ptr
<
Node
>
weights_layer
,
std
::
shared_ptr
<
Node
>
weights_iter
,
std
::
shared_ptr
<
Node
>
bias
,
const
in
t
num_timesteps
,
const
in
t
num_gates_per_cell
,
const
in
t
src_sequence_length
,
const
in
t
src_layer_feature_size
,
const
in
t
src_iter_feature_size
,
const
in
t
num_cell_states
,
const
in
t
direction
,
const
in
t
num_fused_layers
)
size_
t
num_timesteps
,
size_
t
num_gates_per_cell
,
size_
t
src_sequence_length
,
size_
t
src_layer_feature_size
,
size_
t
src_iter_feature_size
,
size_
t
num_cell_states
,
size_
t
direction
,
size_
t
num_fused_layers
)
:
Op
(
"Rnn"
,
check_single_output_args
({
src_layer
,
src_iter
,
weights_layer
,
weights_iter
,
bias
}))
,
m_num_timesteps
(
num_timesteps
)
,
m_num_gates_per_cell
(
num_gates_per_cell
)
...
...
@@ -79,7 +79,7 @@ op::Rnn::Rnn(std::shared_ptr<Node> src_layer,
if
(
src_layer
->
get_shape
().
size
()
==
2
)
{
m_batch_size
=
s
tatic_cast
<
int
>
(
src_layer
->
get_shape
()[
0
]
/
num_timesteps
)
;
m_batch_size
=
s
rc_layer
->
get_shape
()[
0
]
/
m_num_timesteps
;
}
else
{
...
...
@@ -110,11 +110,9 @@ op::Rnn::Rnn(std::shared_ptr<Node> src_layer,
set_output_size
(
2
);
set_output_type
(
0
,
src_layer
->
get_element_type
(),
Shape
{
static_cast
<
unsigned
long
>
(
m_direction
*
m_num_timesteps
*
m_batch_size
),
static_cast
<
unsigned
long
>
(
m_src_iter_feature_size
)});
Shape
{(
m_direction
*
m_num_timesteps
*
m_batch_size
),
m_src_iter_feature_size
});
set_output_type
(
1
,
src_layer
->
get_element_type
(),
Shape
{
static_cast
<
unsigned
long
>
(
m_num_cell_states
*
m_direction
*
m_num_fused_layers
*
m_batch_size
),
static_cast
<
unsigned
long
>
(
m_src_iter_feature_size
)});
Shape
{(
m_num_cell_states
*
m_direction
*
m_num_fused_layers
*
m_batch_size
),
m_src_iter_feature_size
});
}
src/ngraph/runtime/cpu/op/rnn.hpp
View file @
0920ed1c
...
...
@@ -51,35 +51,35 @@ namespace ngraph
std
::
shared_ptr
<
Node
>
weights_layer
,
std
::
shared_ptr
<
Node
>
weights_iter
,
std
::
shared_ptr
<
Node
>
bias
,
const
in
t
num_timesteps
,
const
in
t
num_gates_per_cell
,
const
in
t
src_sequence_length
,
const
in
t
src_layer_feature_size
,
const
in
t
src_iter_feature_size
,
const
in
t
num_cell_states
,
const
in
t
direction
,
const
in
t
num_fused_layers
);
size_
t
num_timesteps
,
size_
t
num_gates_per_cell
,
size_
t
src_sequence_length
,
size_
t
src_layer_feature_size
,
size_
t
src_iter_feature_size
,
size_
t
num_cell_states
,
size_
t
direction
,
size_
t
num_fused_layers
);
virtual
std
::
shared_ptr
<
Node
>
copy_with_new_args
(
const
NodeVector
&
new_args
)
const
override
;
in
t
get_num_timesteps
()
const
{
return
m_num_timesteps
;
}
in
t
get_src_sequence_length
()
const
{
return
m_src_sequence_length
;
}
in
t
get_gates_per_cell
()
const
{
return
m_num_gates_per_cell
;
}
in
t
get_batch_size
()
const
{
return
m_batch_size
;
}
in
t
get_src_layer_feature_size
()
const
{
return
m_src_layer_feature_size
;
}
in
t
get_src_iter_feature_size
()
const
{
return
m_src_iter_feature_size
;
}
in
t
get_num_cell_states
()
const
{
return
m_num_cell_states
;
}
in
t
get_direction
()
const
{
return
m_direction
;
}
in
t
get_num_fused_layers
()
const
{
return
m_num_fused_layers
;
}
size_
t
get_num_timesteps
()
const
{
return
m_num_timesteps
;
}
size_
t
get_src_sequence_length
()
const
{
return
m_src_sequence_length
;
}
size_
t
get_gates_per_cell
()
const
{
return
m_num_gates_per_cell
;
}
size_
t
get_batch_size
()
const
{
return
m_batch_size
;
}
size_
t
get_src_layer_feature_size
()
const
{
return
m_src_layer_feature_size
;
}
size_
t
get_src_iter_feature_size
()
const
{
return
m_src_iter_feature_size
;
}
size_
t
get_num_cell_states
()
const
{
return
m_num_cell_states
;
}
size_
t
get_direction
()
const
{
return
m_direction
;
}
size_
t
get_num_fused_layers
()
const
{
return
m_num_fused_layers
;
}
private
:
in
t
m_num_timesteps
;
in
t
m_num_gates_per_cell
;
in
t
m_src_sequence_length
;
in
t
m_batch_size
;
in
t
m_src_layer_feature_size
;
in
t
m_src_iter_feature_size
;
in
t
m_num_cell_states
;
in
t
m_direction
;
in
t
m_num_fused_layers
;
size_
t
m_num_timesteps
;
size_
t
m_num_gates_per_cell
;
size_
t
m_src_sequence_length
;
size_
t
m_batch_size
;
size_
t
m_src_layer_feature_size
;
size_
t
m_src_iter_feature_size
;
size_
t
m_num_cell_states
;
size_
t
m_direction
;
size_
t
m_num_fused_layers
;
};
}
}
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