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

Davide Grohmann llvmlistbot at llvm.org
Thu Jun 19 04:11:27 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())) {
----------------
davidegrohmann wrote:

I have remove `llvm::` from the code introduce in this PR.

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


More information about the Mlir-commits mailing list