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
fe456412
Commit
fe456412
authored
Oct 24, 2018
by
amy.zhuang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename two variables.
parent
87197ec3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
cpu_external_function.cpp
src/ngraph/runtime/cpu/cpu_external_function.cpp
+4
-3
No files found.
src/ngraph/runtime/cpu/cpu_external_function.cpp
View file @
fe456412
...
...
@@ -1179,10 +1179,11 @@ void runtime::cpu::CPU_ExternalFunction::process_in_place_concat(
{
if
(
auto
user_concat
=
dynamic_pointer_cast
<
ngraph
::
op
::
Concat
>
(
user
))
{
if
(
auto
op_annotations
=
user_concat
->
get_op_annotations
())
if
(
auto
user_
op_annotations
=
user_concat
->
get_op_annotations
())
{
auto
in_place_oi_pairs
=
op_annotations
->
get_in_place_oi_pairs
();
if
(
in_place_oi_pairs
.
size
()
>
0
)
auto
user_in_place_oi_pairs
=
user_op_annotations
->
get_in_place_oi_pairs
();
if
(
user_in_place_oi_pairs
.
size
()
>
0
)
{
found_last_concat
=
false
;
break
;
...
...
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