[Mlir-commits] [mlir] [MLIR][AMDGPU] Added l2-prefetch op to AMDGPU (PR #188457)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Thu Mar 26 05:22:39 PDT 2026
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff origin/main HEAD --extensions cpp -- mlir/lib/Conversion/AMDGPUToROCDL/AMDGPUToROCDL.cpp mlir/lib/Dialect/AMDGPU/IR/AMDGPUOps.cpp --diff_from_common_commit
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/mlir/lib/Conversion/AMDGPUToROCDL/AMDGPUToROCDL.cpp b/mlir/lib/Conversion/AMDGPUToROCDL/AMDGPUToROCDL.cpp
index 90247982c..10d67a089 100644
--- a/mlir/lib/Conversion/AMDGPUToROCDL/AMDGPUToROCDL.cpp
+++ b/mlir/lib/Conversion/AMDGPUToROCDL/AMDGPUToROCDL.cpp
@@ -3974,14 +3974,19 @@ struct GlobalPrefetchOpLowering
Value memRef = adaptor.getSrc();
MemRefDescriptor descriptor(memRef);
Location loc = op->getLoc();
- auto inboundsFlags = isSpeculative ? LLVM::GEPNoWrapFlags::none : LLVM::GEPNoWrapFlags::inbounds | LLVM::GEPNoWrapFlags::nuw;
- Value prefetchPtr = getStridedElementPtr(rewriter, loc, adaptor.getSrc(), adaptor.getIndices(), inboundsFlags);
+ auto inboundsFlags = isSpeculative ? LLVM::GEPNoWrapFlags::none
+ : LLVM::GEPNoWrapFlags::inbounds |
+ LLVM::GEPNoWrapFlags::nuw;
+ Value prefetchPtr = getStridedElementPtr(
+ rewriter, loc, adaptor.getSrc(), adaptor.getIndices(), inboundsFlags);
llvmElemTy, basePtr, offset);
- Operation *newOp = ROCDL::GlobalPrefetchOp::create(
- rewriter, loc, prefetchPtr, scopeAttr, {}, {}, {});
+ Operation *newOp =
+ ROCDL::GlobalPrefetchOp::create(
+ rewriter, loc, prefetchPtr,
+ scopeAttr, {}, {}, {});
- rewriter.replaceOp(op, newOp);
- return success();
+ rewriter.replaceOp(op, newOp);
+ return success();
}
private:
``````````
</details>
https://github.com/llvm/llvm-project/pull/188457
More information about the Mlir-commits
mailing list