[Mlir-commits] [mlir] [mlir] Add a ValueSemantics trait. (PR #99493)
Alexander Belyaev
llvmlistbot at llvm.org
Fri Jul 19 05:00:19 PDT 2024
================
@@ -39,6 +39,16 @@ struct IntegerTypeStorage;
struct TupleTypeStorage;
} // namespace detail
+/// Type trait indicating that the type can be an operand to an elementwise op.
+template <typename ConcreteType>
+class MappableContainer
+ : public TypeTrait::TraitBase<ConcreteType, MappableContainer> {};
----------------
pifon2a wrote:
We don't. Good catch, Mehdi!
https://github.com/llvm/llvm-project/pull/99493
More information about the Mlir-commits
mailing list