[Mlir-commits] [mlir] [mlir][spirv] Add support for SPV_ARM_tensors (PR #144667)
Davide Grohmann
llvmlistbot at llvm.org
Thu Jun 19 04:11:33 PDT 2025
================
@@ -125,6 +127,8 @@ unsigned CompositeType::getNumElements() const {
return structType.getNumElements();
if (auto vectorType = llvm::dyn_cast<VectorType>(*this))
return vectorType.getNumElements();
+ if (auto tensorArmType = llvm::dyn_cast<TensorArmType>(*this))
----------------
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