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
d55d8d24
"profiler/vscode:/vscode.git/clone" did not exist on "517ff41db909418602c4bb1a51580db124781e65"
Commit
d55d8d24
authored
Jul 10, 2019
by
Paul
Browse files
Fix tidy issues
parent
5c7bee3a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/include/migraphx/matcher.hpp
src/include/migraphx/matcher.hpp
+1
-1
src/simplify_algebra.cpp
src/simplify_algebra.cpp
+1
-1
No files found.
src/include/migraphx/matcher.hpp
View file @
d55d8d24
...
...
@@ -246,7 +246,7 @@ struct find_skip
M
m
;
M
matcher
()
const
{
return
m
;
}
void
apply
(
program
&
,
matcher_result
)
const
{}
void
apply
(
program
&
,
const
matcher_result
&
)
const
{}
};
template
<
class
M
>
...
...
src/simplify_algebra.cpp
View file @
d55d8d24
...
...
@@ -13,7 +13,7 @@ auto lit_broadcast() { return match::any_of(match::is_constant(), match::name("b
auto
not_lit_broadcast
()
{
return
match
::
none_of
(
match
::
is_constant
(),
match
::
name
(
"broadcast"
));
}
auto
op_lit_broadcast
(
std
::
string
op
,
std
::
string
x
,
std
::
string
y
)
{
return
match
::
name
(
op
)(
match
::
either_arg
(
0
,
1
)(
lit_broadcast
().
bind
(
std
::
move
(
x
)),
return
match
::
name
(
std
::
move
(
op
)
)
(
match
::
either_arg
(
0
,
1
)(
lit_broadcast
().
bind
(
std
::
move
(
x
)),
not_lit_broadcast
().
bind
(
std
::
move
(
y
))));
}
...
...
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