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
2acd265b
Commit
2acd265b
authored
Nov 20, 2023
by
Umang Yadav
Browse files
Remove DPP
parent
6fbd9970
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
7 deletions
+0
-7
src/targets/gpu/jit/reduce.cpp
src/targets/gpu/jit/reduce.cpp
+0
-7
No files found.
src/targets/gpu/jit/reduce.cpp
View file @
2acd265b
...
@@ -177,13 +177,6 @@ struct simple_reduce_compiler : compiler<simple_reduce_compiler>
...
@@ -177,13 +177,6 @@ struct simple_reduce_compiler : compiler<simple_reduce_compiler>
{
"algo"
,
algo
},
{
"algo"
,
algo
},
{
"transformers"
,
make_transformer_args
(
vec
)},
{
"transformers"
,
make_transformer_args
(
vec
)},
{
"preamble"
,
v
.
get
(
"preamble"
,
std
::
string
{})}});
{
"preamble"
,
v
.
get
(
"preamble"
,
std
::
string
{})}});
// disable DPP for FP8 for now,, TODO: need to disable for Any FP8 types
if
(
std
::
any_of
(
inputs
.
begin
(),
inputs
.
end
(),
[](
const
auto
&
s
)
{
return
s
.
type
()
==
migraphx
::
shape
::
fp8e4m3fnuz_type
;
}))
{
options
.
params
+=
"-DMIGRAPHX_HAS_DPP=0 "
;
}
options
.
params
+=
"-Wno-float-equal"
;
options
.
params
+=
"-Wno-float-equal"
;
return
compile_hip_code_object
(
src
,
options
);
return
compile_hip_code_object
(
src
,
options
);
}
}
...
...
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