[Mlir-commits] [mlir] [mlir][amdgpu] Add tensor load store operations (PR #170918)

Erick Ochoa Lopez llvmlistbot at llvm.org
Tue Dec 9 06:10:25 PST 2025


================
@@ -2723,24 +2723,15 @@ struct AMDGPUTensorLoadStoreOpLowering
 
     ValueRange desc = adaptor.getDesc();
     uint32_t temporalHint = static_cast<uint32_t>(op.getTemporalHint());
-    bool nonVolatile = static_cast<bool>(op.getNonVolatile());
+    bool isVolatile = !static_cast<bool>(op.getIsVolatile());
----------------
amd-eochoalo wrote:

Thanks Jakub! https://github.com/llvm/llvm-project/pull/170918/commits/455a399166a5cbfe4b83ba4bc85143f2f7d82c9f the logic is correct but the identifier was incorrectly named.

https://github.com/llvm/llvm-project/pull/170918


More information about the Mlir-commits mailing list