Skip to content

Commit 176349b

Browse files
committed
gpu: intel: jit: gemm: VERROR on get_binary failure
1 parent 0ab12ed commit 176349b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,9 @@ xpu::binary_t gen_gemm_kernel_t::get_binary(
732732
REG_XE2_ISA(ARCH_DISPATCH(Xe2))
733733
default: assert(!"Unsupported architecture"); break;
734734
}
735-
} catch (...) {}
735+
} catch (const std::runtime_error &err) {
736+
VERROR(primitive, gpu, "%s,%s", "jit::gemm", err.what());
737+
}
736738

737739
return {};
738740

0 commit comments

Comments
 (0)