Skip to content

Commit 608f870

Browse files
xe: jit: enable bf8 emulated mov
1 parent be452b5 commit 608f870

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/gpu/intel/jit/emulation.hpp

+6
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,12 @@ struct EmulationImplementation { // NOLINT(readability-identifier-naming)
312312
dst.setType(DataType::ud);
313313
src0.setType(DataType::uw);
314314
g.shl(mod, dst, src0, 16, loc);
315+
} else if (src0.getType() == DataType::bf8
316+
&& dst.getType() == DataType::f) {
317+
RegData hfTmp = src0;
318+
hfTmp.setType(DataType::uw);
319+
g.shl(mod, hfTmp, src0.setType(DataType::ub), 8, loc);
320+
g.mov(mod, dst, hfTmp.setType(DataType::hf), loc);
315321
} else
316322
g.mov(mod, dst, src0, loc);
317323
}

0 commit comments

Comments
 (0)