Commit fe585d42 authored by Umang Yadav's avatar Umang Yadav
Browse files

Disable FP8 tests for the non-gfx940 arches

parent c522d47a
...@@ -112,6 +112,11 @@ std::vector<pass> target::get_passes(migraphx::context& gctx, const compile_opti ...@@ -112,6 +112,11 @@ std::vector<pass> target::get_passes(migraphx::context& gctx, const compile_opti
unsupported_fp8_ops.insert("dot"); unsupported_fp8_ops.insert("dot");
} }
unsupported_fp8_ops.insert("pooling"); unsupported_fp8_ops.insert("pooling");
if(not starts_with(gpu::get_device_name(), "gfx94"))
{
unsupported_fp8_ops.insert("conv");
unsupported_fp8_ops.insert("quant_conv");
}
// clang-format off // clang-format off
return return
{ {
......
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