[Mlir-commits] [mlir] [mlir][spirv] Add support for SPV_ARM_tensors (PR #144667)
Igor Wodiany
llvmlistbot at llvm.org
Thu Jun 19 09:02:37 PDT 2025
================
@@ -691,6 +712,9 @@ bool SPIRVType::classof(Type type) {
return true;
if (auto vectorType = llvm::dyn_cast<VectorType>(type))
return CompositeType::isValid(vectorType);
+ if (auto tensorArmType = llvm::dyn_cast<TensorArmType>(type)) {
----------------
IgWod-IMG wrote:
Do we need braces here? No braces will make it more consistent.
https://github.com/llvm/llvm-project/pull/144667
More information about the Mlir-commits
mailing list