[Mlir-commits] [mlir] [mlir][spirv] Add support for SPV_ARM_tensors (PR #144667)

Igor Wodiany llvmlistbot at llvm.org
Wed Jun 18 06:46:32 PDT 2025


================
@@ -194,6 +194,13 @@ static Type parseAndVerifyType(SPIRVDialect const &dialect,
           << t.getNumElements();
       return Type();
     }
+  } else if (auto t = llvm::dyn_cast<TensorArmType>(type)) {
+    if (!llvm::isa<ScalarType>(t.getElementType())) {
----------------
IgWod-IMG wrote:

I don't think there is a need for `llvm::`. Also line above.

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


More information about the Mlir-commits mailing list