Skip to content

Commit

Permalink
gpu: jit: codegen: add missing Xe2 get_binary case
Browse files Browse the repository at this point in the history
  • Loading branch information
atkassen committed Apr 9, 2024
1 parent 6f3eb93 commit 7607a4b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gpu/jit/codegen/kernel.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ struct ir_generator_t : public jit_generator_base {
REG_XEHP_ISA(CASE(XeHP));
REG_XEHPG_ISA(CASE(XeHPG));
REG_XEHPC_ISA(CASE(XeHPC));
default: break;
REG_XE2_ISA(CASE(Xe2));
default: gpu_assert(false) << "Unexpected GPU architecture";
}
#undef CASE
} catch (ngen::out_of_registers_exception &) {
Expand Down

0 comments on commit 7607a4b

Please sign in to comment.