[Mlir-commits] [mlir] [mlir][SPIR-V] Add support for SPV_INTEL_masked_gather_scatter extension (PR #189099)

Igor Wodiany llvmlistbot at llvm.org
Fri Apr 3 01:35:49 PDT 2026


================
@@ -4300,18 +4310,22 @@ def SPIRV_AnySampledImage : DialectType<SPIRV_Dialect, SPIRV_IsSampledImageType,
                                 "any SPIR-V sampled image type">;
 def SPIRV_AnyTensorArm : DialectType<SPIRV_Dialect, SPIRV_IsTensorArmType,
                                  "any SPIR-V tensorArm type">;
+def SPIRV_AnyVectorOfPointer : DialectType<SPIRV_Dialect,
----------------
IgWod wrote:

Would it be possible to define a VectorOfPointer using existing types and constraints, e.g.,`SPIRV_VectorOf<SPIRV_AnyPtr>`? Or even build it using `FixedVectorOfRankAndLengthAndType`, if more control over sizes and types is required? Then we don't have deal with a new type in C++.

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


More information about the Mlir-commits mailing list