Skip to content

Commit 4c3596d

Browse files
committed
xe: jit: codegen: prevent IR -> nGEN assembly functional changes
It appears that there are scenarios where ngen_asm will throw unexpectedly fail, even though kernel generation succeeds. This patch prevents functional changes from occurring due to this failure.
1 parent 699de16 commit 4c3596d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/gpu/intel/jit/codegen/codegen.cpp

+6-2
Original file line numberDiff line numberDiff line change
@@ -1609,8 +1609,12 @@ void convert_ir_to_ngen_impl(const stmt_t &body, ngen_generator_t *host,
16091609
std::string get_ngen_str(const stmt_t &body, ir_asm_kernel_t host,
16101610
const walk_order_t *kernel_grid_walk_order) {
16111611
#ifdef NGEN_ASM
1612-
convert_ir_to_ngen_impl(body, &host, kernel_grid_walk_order);
1613-
return host.str();
1612+
try {
1613+
convert_ir_to_ngen_impl(body, &host, kernel_grid_walk_order);
1614+
return host.str();
1615+
} catch (std::runtime_error &e) {
1616+
return "IR to nGEN Exception: " + std::string(e.what());
1617+
}
16141618
#else
16151619
return "";
16161620
#endif

0 commit comments

Comments
 (0)