Skip to content

Commit 86be708

Browse files
jsjipszymich
authored andcommitted
[JointMatrix] Fix stride 32 subgroup block read
This patch fix a verification error due to subgroup block read when stride is 32.
1 parent 5e556e6 commit 86be708

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

IGC/BiFModule/Languages/OpenCL/PreRelease/IBiF_matrix.cl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,6 @@ INLINE int __builtin_spriv_OpJointMatrixLoadINTEL_PackedA_RowMajor_1x32_i8_v8i8_
8787

8888
/* PackedA load i16 SG16 */
8989
INLINE short8 __builtin_spriv_OpJointMatrixLoadINTEL_PackedA_RowMajor_SG16_8x16_i16_v8i8_pi32_i32(char *mem, int stride) {
90-
if (stride == 32)
91-
return VEC_TO_VEC8(short,intel_sub_group_block_read_us8((__global uint *)mem));
92-
9390
short8 result;
9491
stride = stride / 2; // short to int
9592
SUB_GROUP_LOADS_8(intel_sub_group_block_read_us, (__global uint *)mem, stride, result)

0 commit comments

Comments
 (0)