[Mlir-commits] [mlir] [MLIR][NVVM] Update prefetch.tensormap Op (PR #153134)
Srinivasa Ravi
llvmlistbot at llvm.org
Thu Aug 14 05:21:59 PDT 2025
================
@@ -25,9 +25,11 @@ include "mlir/Dialect/LLVMIR/LLVMTypes.td"
def LLVM_PointerGeneric : LLVM_PointerInAddressSpace<0>;
def LLVM_PointerGlobal : LLVM_PointerInAddressSpace<1>;
def LLVM_PointerShared : LLVM_PointerInAddressSpace<3>;
+def LLVM_PointerConst : LLVM_PointerInAddressSpace<4>;
def LLVM_PointerLocal : LLVM_PointerInAddressSpace<5>;
def LLVM_PointerTensor : LLVM_PointerInAddressSpace<6>;
def LLVM_PointerSharedCluster : LLVM_PointerInAddressSpace<7>;
+def LLVM_PointerParam : LLVM_PointerInAddressSpace<101>;
----------------
Wolfram70 wrote:
Oh yepp, that makes sense. The alternative approach looks good to me with a `LLVM_PointerGeneric` being used for the `.param` case as well with a `UnitAttr` for it. I think we can go with that, thanks!
https://github.com/llvm/llvm-project/pull/153134
More information about the Mlir-commits
mailing list