Skip to content

Commit 90695a7

Browse files
Vladimir Paramuzovmgouicem
Vladimir Paramuzov
authored andcommitted
build: fix micro sdpa build errors
1 parent 743dcdc commit 90695a7

File tree

2 files changed

+9
-11
lines changed

2 files changed

+9
-11
lines changed

src/gpu/gpu_sdpa_list.cpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,8 @@ namespace {
2929

3030
// clang-format off
3131
constexpr impl_list_item_t impl_list[] = {
32-
INSTANCE(intel::ocl::micro_sdpa_t)
33-
#ifdef DNNL_DEV_MODE
34-
INSTANCE(intel::ocl::ref_sdpa_t)
35-
#endif
32+
GPU_INSTANCE_INTEL(intel::ocl::micro_sdpa_t)
33+
GPU_INSTANCE_INTEL_DEVMODE(intel::ocl::ref_sdpa_t)
3634
nullptr,
3735
};
3836
// clang-format on

src/gpu/intel/jit/gemm/microkernel_provider.cpp

+7-7
Original file line numberDiff line numberDiff line change
@@ -207,13 +207,13 @@ Package selectGEMMMicrokernel(GEMMProtocol protocol, HWInformation hwInfo,
207207
}
208208

209209
switch (hw) {
210-
ARCH_DISPATCH(Gen9)
211-
ARCH_DISPATCH(Gen11)
212-
ARCH_DISPATCH(XeLP)
213-
ARCH_DISPATCH(XeHP)
214-
ARCH_DISPATCH(XeHPG)
215-
ARCH_DISPATCH(XeHPC)
216-
ARCH_DISPATCH(Xe2)
210+
REG_GEN9_ISA(ARCH_DISPATCH(Gen9))
211+
REG_GEN11_ISA(ARCH_DISPATCH(Gen11))
212+
REG_XELP_ISA(ARCH_DISPATCH(XeLP))
213+
REG_XEHP_ISA(ARCH_DISPATCH(XeHP))
214+
REG_XEHPG_ISA(ARCH_DISPATCH(XeHPG))
215+
REG_XEHPC_ISA(ARCH_DISPATCH(XeHPC))
216+
REG_XE2_ISA(ARCH_DISPATCH(Xe2))
217217
default: throw std::runtime_error("Unsupported architecture");
218218
}
219219
#undef ARCH_DISPATCH

0 commit comments

Comments
 (0)