Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
MIGraphX
Commits
49f483af
Commit
49f483af
authored
Feb 13, 2019
by
mei-ye
Browse files
an attempt to work around ridiculous tidy check
parent
d2afd9d4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/opt/dom_info.cpp
src/opt/dom_info.cpp
+2
-2
No files found.
src/opt/dom_info.cpp
View file @
49f483af
...
...
@@ -156,7 +156,7 @@ bool dom_info::is_split_point(instruction_ref ins)
if
(
arg_stream
>=
0
)
stream_set
.
insert
(
arg_stream
);
}
return
(
stream_set
.
size
()
>
1
)
?
true
:
false
;
return
(
stream_set
.
size
()
>
1
);
}
// Identify merge points. A merge point has more than one
...
...
@@ -170,7 +170,7 @@ bool dom_info::is_merge_point(instruction_ref ins)
if
(
arg_stream
>=
0
)
stream_set
.
insert
(
arg_stream
);
}
return
(
stream_set
.
size
()
>
1
)
?
true
:
false
;
return
(
stream_set
.
size
()
>
1
);
}
// Propagate split points through the graph and identify concurrent instructions.
...
...
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