Skip to content

Commit 42aaded

Browse files
committed
xe: jit: ir: add assertion for sub-byte type packing
1 parent aa20318 commit 42aaded

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/gpu/intel/jit/ir/send_plan.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -1302,6 +1302,11 @@ class view_info_t {
13021302
if (type_size < slot_size * type_packing && slot_size < 4)
13031303
slot_size = type_size;
13041304

1305+
// Require sub-byte types to fill a dword to avoid striding. This
1306+
// restriction can be reduced to byte-alignment when the restriction
1307+
// above is lifted.
1308+
if (slot_size < 4 && type_packing > 1) gpu_error_not_expected();
1309+
13051310
// GPUs <= XeLP requires qword alignment for qword scattered messages,
13061311
// downgrade to byte scattered (x1, x2 or x4) when alignment is
13071312
// sub-qword.

0 commit comments

Comments
 (0)