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
e137db54
Commit
e137db54
authored
Apr 07, 2022
by
umangyadav
Browse files
change lowering names
parent
e05243e0
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
src/targets/cpu/include/migraphx/cpu/lowering.hpp
src/targets/cpu/include/migraphx/cpu/lowering.hpp
+1
-1
src/targets/gpu/include/migraphx/gpu/lowering.hpp
src/targets/gpu/include/migraphx/gpu/lowering.hpp
+1
-1
src/targets/ref/include/migraphx/ref/lowering.hpp
src/targets/ref/include/migraphx/ref/lowering.hpp
+1
-1
No files found.
src/targets/cpu/include/migraphx/cpu/lowering.hpp
View file @
e137db54
...
...
@@ -13,7 +13,7 @@ namespace cpu {
struct
lowering
{
std
::
string
name
()
const
{
return
"lowering"
;
}
std
::
string
name
()
const
{
return
"
cpu::
lowering"
;
}
void
apply
(
module
&
m
)
const
;
};
...
...
src/targets/gpu/include/migraphx/gpu/lowering.hpp
View file @
e137db54
...
...
@@ -14,7 +14,7 @@ struct lowering
{
context
*
ctx
;
bool
offload_copy
;
std
::
string
name
()
const
{
return
"lowering"
;
}
std
::
string
name
()
const
{
return
"
gpu::
lowering"
;
}
void
apply
(
module
&
m
)
const
;
};
...
...
src/targets/ref/include/migraphx/ref/lowering.hpp
View file @
e137db54
...
...
@@ -10,7 +10,7 @@ namespace ref {
struct
lowering
{
std
::
string
name
()
const
{
return
"lowering"
;
}
std
::
string
name
()
const
{
return
"
ref::
lowering"
;
}
void
apply
(
module
&
m
)
const
;
};
...
...
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