Skip to content

Commit 6f35f7c

Browse files
VyacheslavLevytskyysys-ce-bb
authored andcommitted
add support for out of bounds load/store (#2277)
Add support for load/store operations for a cooperative matrix such that original matrix shape is known and implementations are able to reason about how to deal with the out of bounds. CapabilityCooperativeMatrixCheckedInstructionsINTEL = 6192 CooperativeMatrixLoadCheckedINTEL = 6193 CooperativeMatrixStoreCheckedINTEL = 6194 Original commit: KhronosGroup/SPIRV-LLVM-Translator@b62cb55
1 parent b0c60b0 commit 6f35f7c

File tree

6 files changed

+198
-0
lines changed

6 files changed

+198
-0
lines changed

llvm-spirv/lib/SPIRV/libSPIRV/SPIRVEnum.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,8 @@ template <> inline void SPIRVMap<SPIRVCapabilityKind, SPIRVCapVec>::init() {
219219
{CapabilityCooperativeMatrixKHR});
220220
ADD_VEC_INIT(internal::CapabilityCooperativeMatrixInvocationInstructionsINTEL,
221221
{CapabilityCooperativeMatrixKHR});
222+
ADD_VEC_INIT(internal::CapabilityCooperativeMatrixCheckedInstructionsINTEL,
223+
{CapabilityCooperativeMatrixKHR});
222224
}
223225

224226
template <> inline void SPIRVMap<SPIRVExecutionModelKind, SPIRVCapVec>::init() {

llvm-spirv/lib/SPIRV/libSPIRV/SPIRVInstruction.h

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3438,6 +3438,27 @@ class SPIRVCooperativeMatrixPrefetchINTELInstBase
34383438
_SPIRV_OP(CooperativeMatrixPrefetch, false, 8, true, 5)
34393439
#undef _SPIRV_OP
34403440

3441+
class SPIRVCooperativeMatrixCheckedInstructionsINTELInstBase
3442+
: public SPIRVInstTemplateBase {
3443+
protected:
3444+
std::optional<ExtensionID> getRequiredExtension() const override {
3445+
return ExtensionID::SPV_INTEL_joint_matrix;
3446+
}
3447+
SPIRVCapVec getRequiredCapability() const override {
3448+
return getVec(
3449+
internal::CapabilityCooperativeMatrixCheckedInstructionsINTEL);
3450+
}
3451+
};
3452+
3453+
#define _SPIRV_OP(x, ...) \
3454+
typedef SPIRVInstTemplate< \
3455+
SPIRVCooperativeMatrixCheckedInstructionsINTELInstBase, \
3456+
internal::Op##x##INTEL, __VA_ARGS__> \
3457+
SPIRV##x##INTEL;
3458+
_SPIRV_OP(CooperativeMatrixLoadChecked, true, 9, true, 7)
3459+
_SPIRV_OP(CooperativeMatrixStoreChecked, false, 8, true, 8)
3460+
#undef _SPIRV_OP
3461+
34413462
class SPIRVCooperativeMatrixInvocationInstructionsINTELInstBase
34423463
: public SPIRVInstTemplateBase {
34433464
protected:

llvm-spirv/lib/SPIRV/libSPIRV/SPIRVNameMapEnum.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -682,6 +682,8 @@ template <> inline void SPIRVMap<Capability, std::string>::init() {
682682
"CooperativeMatrixPrefetchINTEL");
683683
add(internal::CapabilityCooperativeMatrixInvocationInstructionsINTEL,
684684
"CooperativeMatrixInvocationInstructionsINTEL");
685+
add(internal::CapabilityCooperativeMatrixCheckedInstructionsINTEL,
686+
"CooperativeMatrixCheckedInstructionsINTEL");
685687
}
686688
SPIRV_DEF_NAMEMAP(Capability, SPIRVCapabilityNameMap)
687689

llvm-spirv/lib/SPIRV/libSPIRV/SPIRVOpCodeEnumInternal.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ _SPIRV_OP_INTERNAL(JointMatrixGetElementCoordINTEL,
1818
internal::OpJointMatrixGetElementCoordINTEL)
1919
_SPIRV_OP_INTERNAL(CooperativeMatrixPrefetchINTEL,
2020
internal::OpCooperativeMatrixPrefetchINTEL)
21+
_SPIRV_OP_INTERNAL(CooperativeMatrixLoadCheckedINTEL,
22+
internal::OpCooperativeMatrixLoadCheckedINTEL)
23+
_SPIRV_OP_INTERNAL(CooperativeMatrixStoreCheckedINTEL,
24+
internal::OpCooperativeMatrixStoreCheckedINTEL)
2125
_SPIRV_OP_INTERNAL(CooperativeMatrixApplyFunctionINTEL,
2226
internal::OpCooperativeMatrixApplyFunctionINTEL)
2327
_SPIRV_OP_INTERNAL(ComplexFMulINTEL, internal::ComplexFMulINTEL)

llvm-spirv/lib/SPIRV/libSPIRV/spirv_internal.hpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,8 @@ enum InternalOp {
7070
IOpJointMatrixUUMadINTEL = 6130,
7171
IOpArithmeticFenceINTEL = 6145,
7272
IOpTypeJointMatrixINTELv2 = 6184,
73+
IOpCooperativeMatrixLoadCheckedINTEL = 6193,
74+
IOpCooperativeMatrixStoreCheckedINTEL = 6194,
7375
IOpJointMatrixWorkItemLengthINTEL = 6410,
7476
IOpComplexFMulINTEL = 6415,
7577
IOpComplexFDivINTEL = 6416,
@@ -105,6 +107,7 @@ enum InternalCapability {
105107
ICapabilityHWThreadQueryINTEL = 6134,
106108
ICapFPArithmeticFenceINTEL = 6144,
107109
ICapGlobalVariableDecorationsINTEL = 6146,
110+
ICapabilityCooperativeMatrixCheckedInstructionsINTEL = 6192,
108111
ICapabilityCooperativeMatrixPrefetchINTEL = 6411,
109112
ICapabilityComplexFloatMulDivINTEL = 6414,
110113
ICapabilityTensorFloat32RoundingINTEL = 6425,
@@ -185,6 +188,10 @@ _SPIRV_OP(Op, JointMatrixGetElementCoordINTEL)
185188
_SPIRV_OP(Capability, CooperativeMatrixPrefetchINTEL)
186189
_SPIRV_OP(Op, CooperativeMatrixPrefetchINTEL)
187190

191+
_SPIRV_OP(Capability, CooperativeMatrixCheckedInstructionsINTEL)
192+
_SPIRV_OP(Op, CooperativeMatrixLoadCheckedINTEL)
193+
_SPIRV_OP(Op, CooperativeMatrixStoreCheckedINTEL)
194+
188195
_SPIRV_OP(Capability, CooperativeMatrixInvocationInstructionsINTEL)
189196
_SPIRV_OP(Op, CooperativeMatrixApplyFunctionINTEL)
190197

Lines changed: 162 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,162 @@
1+
; This is an adapted copy of test/extensions/KHR/SPV_KHR_cooperative_matrix/cooperative_matrix.ll
2+
3+
; RUN: llvm-as < %s -o %t.bc
4+
; RUN: llvm-spirv %t.bc --spirv-ext=+SPV_KHR_cooperative_matrix,+SPV_INTEL_joint_matrix -o %t.spv
5+
; RUN: llvm-spirv %t.spv -to-text -o %t.spt
6+
; RUN: FileCheck < %t.spt %s --check-prefix=CHECK-SPIRV
7+
8+
; RUN: llvm-spirv -r %t.spv -o %t.rev.bc
9+
; RUN: llvm-dis < %t.rev.bc | FileCheck %s --check-prefix=CHECK-LLVM
10+
11+
; CHECK-SPIRV-DAG: Capability CooperativeMatrixKHR
12+
; CHECK-SPIRV-DAG: Extension "SPV_KHR_cooperative_matrix"
13+
; CHECK-SPIRV-DAG: Extension "SPV_INTEL_joint_matrix"
14+
; CHECK-SPIRV-DAG: TypeInt [[#Int8Ty:]] 8 0
15+
; CHECK-SPIRV-DAG: TypeInt [[#Int32Ty:]] 32 0
16+
; CHECK-SPIRV-DAG: Constant [[#Int32Ty]] [[#Const12:]] 12
17+
; CHECK-SPIRV-DAG: Constant [[#Int32Ty]] [[#Const48:]] 48
18+
; CHECK-SPIRV-DAG: Constant [[#Int32Ty]] [[#Const0:]] 0
19+
; CHECK-SPIRV-DAG: Constant [[#Int32Ty]] [[#Const3:]] 3
20+
; CHECK-SPIRV-DAG: Constant [[#Int32Ty]] [[#Const2:]] 2
21+
; CHECK-SPIRV-DAG: Constant [[#Int32Ty]] [[#Const1:]] 1
22+
; CHECK-SPIRV-DAG: TypeCooperativeMatrixKHR [[#MatTy1:]] [[#Int32Ty]] [[#Const3]] [[#Const12]] [[#Const12]] [[#Const2]]
23+
; CHECK-SPIRV-DAG: TypeCooperativeMatrixKHR [[#MatTy2:]] [[#Int8Ty]] [[#Const3]] [[#Const12]] [[#Const48]] [[#Const0]]
24+
; CHECK-SPIRV-DAG: TypeCooperativeMatrixKHR [[#MatTy3:]] [[#Int8Ty]] [[#Const2]] [[#Const48]] [[#Const12]] [[#Const1]]
25+
; CHECK-SPIRV: CompositeConstruct [[#MatTy1]]
26+
; CHECK-SPIRV: CooperativeMatrixLoadCheckedINTEL [[#MatTy2]] [[#Load1:]]
27+
; TODO: Pass Matrix Type Id instead of Matrix Id to CooperativeMatrixLengthKHR.
28+
; CHECK-SPIRV: CooperativeMatrixLengthKHR [[#Int32Ty]] [[#]] [[#Load1]]
29+
; CHECK-SPIRV: CooperativeMatrixLoadCheckedINTEL [[#MatTy3]]
30+
; CHECK-SPIRV: CooperativeMatrixMulAddKHR [[#MatTy1]]
31+
; CHECK-SPIRV: CooperativeMatrixStoreCheckedINTEL
32+
33+
; CHECK-LLVM: call spir_func target("spirv.CooperativeMatrixKHR", i32, 3, 12, 12, 2) @_Z26__spirv_CompositeConstructi(i32 0)
34+
; CHECK-LLVM: call spir_func target("spirv.CooperativeMatrixKHR", i8, 3, 12, 48, 0) @_Z41__spirv_CooperativeMatrixLoadCheckedINTELPU3AS4ciiillli(ptr addrspace(4) %[[MatrixPtr:[%0-9a-z.]+]], i32 0, i32 0, i32 0, i64 12, i64 48, i64 %_arg_K, i32 1)
35+
; CHECK-LLVM: call spir_func i32 @_Z34__spirv_CooperativeMatrixLengthKHRPU3AS144__spirv_CooperativeMatrixKHR__char_3_12_48_0(target("spirv.CooperativeMatrixKHR", i8, 3, 12, 48, 0)
36+
; CHECK-LLVM: call spir_func target("spirv.CooperativeMatrixKHR", i8, 2, 48, 12, 1) @_Z41__spirv_CooperativeMatrixLoadCheckedINTELPU3AS4ciiilll
37+
; CHECK-LLVM: call spir_func target("spirv.CooperativeMatrixKHR", i32, 3, 12, 12, 2) @_Z34__spirv_CooperativeMatrixMulAddKHRPU3AS144__spirv_CooperativeMatrixKHR__char_3_12_48_0PU3AS144__spirv_CooperativeMatrixKHR__char_2_48_12_1PU3AS144__spirv_CooperativeMatrixKHR__uint_3_12_12_2i(target("spirv.CooperativeMatrixKHR", i8, 3, 12, 48, 0) %{{.*}}, target("spirv.CooperativeMatrixKHR", i8, 2, 48, 12, 1) %{{.*}}, target("spirv.CooperativeMatrixKHR", i32, 3, 12, 12, 2)
38+
; CHECK-LLVM: call spir_func void @_Z42__spirv_CooperativeMatrixStoreCheckedINTELPU3AS4iiiPU3AS144__spirv_CooperativeMatrixKHR__uint_3_12_12_2illli(ptr addrspace(4) %{{.*}}, i32 0, i32 0, target("spirv.CooperativeMatrixKHR", i32, 3, 12, 12, 2)
39+
40+
; ModuleID = 'test-matrix-opaque.bc'
41+
source_filename = "matrix-int8-test.cpp"
42+
target datalayout = "e-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-n8:16:32:64"
43+
target triple = "spir64-unknown-unknown"
44+
45+
%"class.sycl::_V1::range" = type { %"class.sycl::_V1::detail::array" }
46+
%"class.sycl::_V1::detail::array" = type { [2 x i64] }
47+
%"class.sycl::_V1::id" = type { %"class.sycl::_V1::detail::array" }
48+
49+
$_ZTSZZ15matrix_multiply = comdat any
50+
51+
@__spirv_BuiltInGlobalInvocationId = external dso_local local_unnamed_addr addrspace(1) constant <3 x i64>, align 32
52+
@__spirv_BuiltInLocalInvocationId = external dso_local local_unnamed_addr addrspace(1) constant <3 x i64>, align 32
53+
54+
; Function Attrs: convergent norecurse
55+
define weak_odr dso_local spir_kernel void @_ZTSZZ15matrix_multiply(ptr addrspace(1) noundef align 1 %_arg_accA, ptr addrspace(1) noundef align 1 %_arg_accB, ptr noundef byval(%"class.sycl::_V1::range") align 8 %_arg_accB5, ptr noundef byval(%"class.sycl::_V1::id") align 8 %_arg_accB6, ptr addrspace(1) noundef align 4 %_arg_accC, i64 noundef %_arg_N, i64 noundef %_arg_K) local_unnamed_addr #0 comdat {
56+
entry:
57+
%sub_c.sroa.0.i = alloca target("spirv.CooperativeMatrixKHR", i32, 3, 12, 12, 2), align 8
58+
%ref.tmp29.sroa.0.i = alloca target("spirv.CooperativeMatrixKHR", i32, 3, 12, 12, 2), align 8
59+
%agg.tmp15.sroa.0.sroa.2.0..sroa_idx = getelementptr inbounds %"class.sycl::_V1::range", ptr %_arg_accB5, i64 0, i32 0, i32 0, i64 1
60+
%agg.tmp15.sroa.0.sroa.2.0.copyload = load i64, ptr %agg.tmp15.sroa.0.sroa.2.0..sroa_idx, align 8
61+
%agg.tmp16.sroa.0.sroa.0.0.copyload = load i64, ptr %_arg_accB6, align 8
62+
%agg.tmp16.sroa.0.sroa.2.0..sroa_idx = getelementptr inbounds %"class.sycl::_V1::id", ptr %_arg_accB6, i64 0, i32 0, i32 0, i64 1
63+
%agg.tmp16.sroa.0.sroa.2.0.copyload = load i64, ptr %agg.tmp16.sroa.0.sroa.2.0..sroa_idx, align 8
64+
%mul.i4.i.i.i.i45 = mul i64 %agg.tmp16.sroa.0.sroa.0.0.copyload, %agg.tmp15.sroa.0.sroa.2.0.copyload
65+
%add.i6.i.i.i.i46 = add i64 %mul.i4.i.i.i.i45, %agg.tmp16.sroa.0.sroa.2.0.copyload
66+
%add.ptr.i47 = getelementptr inbounds i8, ptr addrspace(1) %_arg_accB, i64 %add.i6.i.i.i.i46
67+
%0 = load <3 x i64>, ptr addrspace(1) @__spirv_BuiltInGlobalInvocationId, align 32
68+
%1 = extractelement <3 x i64> %0, i64 1
69+
%2 = extractelement <3 x i64> %0, i64 0
70+
%3 = load <3 x i64>, ptr addrspace(1) @__spirv_BuiltInLocalInvocationId, align 32
71+
%4 = extractelement <3 x i64> %3, i64 1
72+
%5 = extractelement <3 x i64> %3, i64 0
73+
%cmp.i.i = icmp ult i64 %1, 2147483648
74+
%cmp.i54.i = icmp ult i64 %2, 2147483648
75+
%cmp.i56.i = icmp ult i64 %4, 2147483648
76+
%sub.i = sub nsw i64 %1, %4
77+
%cmp.i58.i = icmp ult i64 %5, 2147483648
78+
%sub5.i = sub nsw i64 %2, %5
79+
call void @llvm.lifetime.start.p0(i64 8, ptr nonnull %sub_c.sroa.0.i)
80+
%call.i.i = tail call spir_func noundef target("spirv.CooperativeMatrixKHR", i32, 3, 12, 12, 2) @_Z26__spirv_CompositeConstruct(i32 noundef 0) #4
81+
store target("spirv.CooperativeMatrixKHR", i32, 3, 12, 12, 2) %call.i.i, ptr %sub_c.sroa.0.i, align 8
82+
%mul.i = mul nsw i64 %sub.i, 12
83+
%div2452.i = lshr i64 %sub5.i, 4
84+
%mul26.i = mul i64 %div2452.i, 48
85+
%div.i = udiv i64 %_arg_K, 48
86+
%mul11.i = mul i64 %mul.i, %_arg_K
87+
%add.ptr.i93.i = getelementptr inbounds i8, ptr addrspace(1) %_arg_accA, i64 %mul11.i
88+
%idx.neg.i.i104.i = sub i64 0, %add.i6.i.i.i.i46
89+
%add.ptr.i.i105141.i = getelementptr i8, ptr addrspace(1) %add.ptr.i47, i64 %mul26.i
90+
%mul22.i = shl i64 %_arg_N, 2
91+
%add.ptr.i108140.i = getelementptr i8, ptr addrspace(1) %add.ptr.i.i105141.i, i64 %idx.neg.i.i104.i
92+
br label %for.cond.i
93+
94+
for.cond.i: ; preds = %for.body.i, %entry
95+
%k.0.i = phi i32 [ 0, %entry ], [ %add.i, %for.body.i ]
96+
%conv.i = zext i32 %k.0.i to i64
97+
%cmp.i = icmp ugt i64 %div.i, %conv.i
98+
br i1 %cmp.i, label %for.body.i, label %_ZZZ15matrix_multiplyIiaLm24ELm96ELm24ELm96ELm24ELm24EEvR10big_matrixIT_XT5_EXT6_EERS0_IT0_XT1_EXT2_EERS0_IS4_XT3_EXT4_EEENKUlRN4sycl3_V17handlerEE_clESC_ENKUlNSA_7nd_itemILi2EEEE_clESF_.exit
99+
100+
for.body.i: ; preds = %for.cond.i
101+
%mul12.i = mul nsw i32 %k.0.i, 48
102+
%conv13.i = zext i32 %mul12.i to i64
103+
%add.ptr.i96.i = getelementptr inbounds i8, ptr addrspace(1) %add.ptr.i93.i, i64 %conv13.i
104+
%call.ascast.i66.i = addrspacecast ptr addrspace(1) %add.ptr.i96.i to ptr addrspace(4)
105+
%call1.i.i = tail call spir_func noundef target("spirv.CooperativeMatrixKHR", i8, 3, 12, 48, 0) @_Z41__spirv_CooperativeMatrixLoadCheckedINTEL_1(ptr addrspace(4) noundef %call.ascast.i66.i, i32 noundef 0, i32 noundef 0, i32 noundef 0, i64 noundef 12, i64 noundef 48, i64 noundef %_arg_K, i32 noundef 1) #4
106+
%len = tail call spir_func noundef i32 @_Z34__spirv_CooperativeMatrixLengthKHR(target("spirv.CooperativeMatrixKHR", i8, 3, 12, 48, 0) %call1.i.i)
107+
%div20.i = mul nsw i32 %k.0.i, 12
108+
%conv21.i = zext i32 %div20.i to i64
109+
%mul23.i = mul i64 %mul22.i, %conv21.i
110+
%add.ptr.i111.i = getelementptr i8, ptr addrspace(1) %add.ptr.i108140.i, i64 %mul23.i
111+
%call.ascast.i72.i = addrspacecast ptr addrspace(1) %add.ptr.i111.i to ptr addrspace(4)
112+
%call1.i73.i = tail call spir_func noundef target("spirv.CooperativeMatrixKHR", i8, 2, 48, 12, 1) @_Z41__spirv_CooperativeMatrixLoadCheckedINTEL_2(ptr addrspace(4) noundef %call.ascast.i72.i, i32 noundef 0, i32 noundef 0, i32 noundef 0, i64 noundef 48, i64 noundef 12, i64 noundef %mul22.i) #4
113+
call void @llvm.lifetime.start.p0(i64 8, ptr nonnull %ref.tmp29.sroa.0.i)
114+
%sub_c.sroa.0.i.0.sub_c.sroa.0.i.0.sub_c.sroa.0.0.sub_c.sroa.0.0.sub_c.sroa.0.0.125.i = load target("spirv.CooperativeMatrixKHR", i32, 3, 12, 12, 2), ptr %sub_c.sroa.0.i, align 8
115+
%call.i77.i = tail call spir_func noundef target("spirv.CooperativeMatrixKHR", i32, 3, 12, 12, 2) @_Z34__spirv_CooperativeMatrixMulAddKHR(target("spirv.CooperativeMatrixKHR", i8, 3, 12, 48, 0) noundef %call1.i.i, target("spirv.CooperativeMatrixKHR", i8, 2, 48, 12, 1) noundef %call1.i73.i, target("spirv.CooperativeMatrixKHR", i32, 3, 12, 12, 2) noundef %sub_c.sroa.0.i.0.sub_c.sroa.0.i.0.sub_c.sroa.0.0.sub_c.sroa.0.0.sub_c.sroa.0.0.125.i, i32 noundef 12) #4
116+
store target("spirv.CooperativeMatrixKHR", i32, 3, 12, 12, 2) %call.i77.i, ptr %ref.tmp29.sroa.0.i, align 8
117+
%ref.tmp29.sroa.0.i.0.ref.tmp29.sroa.0.i.0.ref.tmp29.sroa.0.0.ref.tmp29.sroa.0.0.ref.tmp29.sroa.0.0..i = load i64, ptr %ref.tmp29.sroa.0.i, align 8
118+
store i64 %ref.tmp29.sroa.0.i.0.ref.tmp29.sroa.0.i.0.ref.tmp29.sroa.0.0.ref.tmp29.sroa.0.0.ref.tmp29.sroa.0.0..i, ptr %sub_c.sroa.0.i, align 8
119+
call void @llvm.lifetime.end.p0(i64 8, ptr nonnull %ref.tmp29.sroa.0.i)
120+
%add.i = add nuw nsw i32 %k.0.i, 1
121+
br label %for.cond.i
122+
123+
_ZZZ15matrix_multiplyIiaLm24ELm96ELm24ELm96ELm24ELm24EEvR10big_matrixIT_XT5_EXT6_EERS0_IT0_XT1_EXT2_EERS0_IS4_XT3_EXT4_EEENKUlRN4sycl3_V17handlerEE_clESC_ENKUlNSA_7nd_itemILi2EEEE_clESF_.exit: ; preds = %for.cond.i
124+
%mul37.i = mul i64 %mul.i, %_arg_N
125+
%add.ptr.i.i = getelementptr inbounds i32, ptr addrspace(1) %_arg_accC, i64 %mul37.i
126+
%mul39.i = mul nuw i64 %div2452.i, 12
127+
%add.ptr.i81.i = getelementptr inbounds i32, ptr addrspace(1) %add.ptr.i.i, i64 %mul39.i
128+
%call.ascast.i.i = addrspacecast ptr addrspace(1) %add.ptr.i81.i to ptr addrspace(4)
129+
%sub_c.sroa.0.i.0.sub_c.sroa.0.i.0.sub_c.sroa.0.0.sub_c.sroa.0.0.sub_c.sroa.0.0..i = load target("spirv.CooperativeMatrixKHR", i32, 3, 12, 12, 2), ptr %sub_c.sroa.0.i, align 8
130+
tail call spir_func void @_Z42__spirv_CooperativeMatrixStoreCheckedINTEL(ptr addrspace(4) noundef %call.ascast.i.i, i32 noundef 0, i32 noundef 0, target("spirv.CooperativeMatrixKHR", i32, 3, 12, 12, 2) noundef %sub_c.sroa.0.i.0.sub_c.sroa.0.i.0.sub_c.sroa.0.0.sub_c.sroa.0.0.sub_c.sroa.0.0..i, i32 noundef 0, i64 noundef 12, i64 noundef 12, i64 noundef %_arg_N, i32 noundef 1) #4
131+
call void @llvm.lifetime.end.p0(i64 8, ptr nonnull %sub_c.sroa.0.i)
132+
ret void
133+
}
134+
135+
; Function Attrs: convergent
136+
declare dso_local spir_func noundef target("spirv.CooperativeMatrixKHR", i32, 3, 12, 12, 2) @_Z26__spirv_CompositeConstruct(i32 noundef) local_unnamed_addr #2
137+
138+
declare dso_local spir_func noundef i32 @_Z34__spirv_CooperativeMatrixLengthKHR(target("spirv.CooperativeMatrixKHR", i8, 3, 12, 48, 0) noundef)
139+
140+
; Function Attrs: convergent
141+
declare dso_local spir_func noundef target("spirv.CooperativeMatrixKHR", i8, 3, 12, 48, 0) @_Z41__spirv_CooperativeMatrixLoadCheckedINTEL_1(ptr addrspace(4) noundef, i32 noundef, i32 noundef, i32 noundef, i64 noundef, i64 noundef, i64 noundef, i32 noundef) local_unnamed_addr #2
142+
143+
; Function Attrs: convergent
144+
declare dso_local spir_func noundef target("spirv.CooperativeMatrixKHR", i8, 2, 48, 12, 1) @_Z41__spirv_CooperativeMatrixLoadCheckedINTEL_2(ptr addrspace(4) noundef, i32 noundef, i32 noundef, i32 noundef, i64 noundef, i64 noundef, i64 noundef) local_unnamed_addr #2
145+
146+
; Function Attrs: convergent
147+
declare dso_local spir_func noundef target("spirv.CooperativeMatrixKHR", i32, 3, 12, 12, 2) @_Z34__spirv_CooperativeMatrixMulAddKHR(target("spirv.CooperativeMatrixKHR", i8, 3, 12, 48, 0) noundef, target("spirv.CooperativeMatrixKHR", i8, 2, 48, 12, 1) noundef, target("spirv.CooperativeMatrixKHR", i32, 3, 12, 12, 2) noundef, i32 noundef) local_unnamed_addr #2
148+
149+
; Function Attrs: convergent
150+
declare dso_local spir_func void @_Z42__spirv_CooperativeMatrixStoreCheckedINTEL(ptr addrspace(4) noundef, i32 noundef, i32 noundef, target("spirv.CooperativeMatrixKHR", i32, 3, 12, 12, 2) noundef, i32 noundef, i64 noundef, i64 noundef, i64 noundef, i32 noundef) local_unnamed_addr #2
151+
152+
; Function Attrs: nocallback nofree nosync nounwind willreturn memory(argmem: readwrite)
153+
declare void @llvm.lifetime.start.p0(i64 immarg, ptr nocapture) #3
154+
155+
; Function Attrs: nocallback nofree nosync nounwind willreturn memory(argmem: readwrite)
156+
declare void @llvm.lifetime.end.p0(i64 immarg, ptr nocapture) #3
157+
158+
attributes #0 = { convergent norecurse "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "sycl-module-id"="matrix-int8-test.cpp" "uniform-work-group-size"="true" }
159+
attributes #1 = { nocallback nofree nosync nounwind willreturn memory(inaccessiblemem: readwrite) }
160+
attributes #2 = { convergent "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" }
161+
attributes #3 = { nocallback nofree nosync nounwind willreturn memory(argmem: readwrite) }
162+
attributes #4 = { convergent }

0 commit comments

Comments
 (0)