Commit 2acd265b authored by Umang Yadav's avatar Umang Yadav
Browse files

Remove DPP

parent 6fbd9970
...@@ -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);
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment