Skip to content

Commit

Permalink
Fix clang compile error.
Browse files Browse the repository at this point in the history
  • Loading branch information
silee2 committed Nov 17, 2023
1 parent 3959e2a commit 2f50250
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Conversion/XeGPUToSPIRV/XeGPUToSPIRV.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ class LoadStorePrefetchNdToRawSend : public OpConversionPattern<OpType> {
// the base/surfaceInfo/blockInfo are staticly from the tensor desc
// while the offsetX/Y are dynamicly udpated
auto insertPoint = rewriter.saveInsertionPoint();
CreateNdDescOp createDescOp = *findDescOp(op.template getTensorDesc());
CreateNdDescOp createDescOp = *findDescOp(op.getTensorDesc());
rewriter.setInsertionPointAfter(createDescOp);
auto v8i32 = VectorType::get(8, i32Type);
auto v4i64 = VectorType::get(4, i64Type);
Expand Down

0 comments on commit 2f50250

Please sign in to comment.