Skip to content

Commit

Permalink
src: gpu: jit: temporarily disable f32 bwdw on XeHP+
Browse files Browse the repository at this point in the history
  • Loading branch information
envsp authored and vpirogov committed Sep 15, 2021
1 parent fa69ed9 commit 721bc3c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/gpu/jit/conv/config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -628,6 +628,12 @@ class conv_config_t : public conv_problem_t {
orig_bia_md.data_type = data_type::f32;
}

// XXX: disable f32 bwd_w due to hang
if (hw == ngen::HW::XeHP || hw == ngen::HW::XeHPG)
if (src_data_type == data_type::f32
&& dst_data_type == data_type::f32)
return status::unimplemented;

return status::success;
}

Expand Down

0 comments on commit 721bc3c

Please sign in to comment.