[Mlir-commits] [mlir] [mlir][tosa] Harden folds/canonicalizations for unranked and dynamic shapes (PR #188188)
Sayan Saha
llvmlistbot at llvm.org
Fri Mar 27 07:06:42 PDT 2026
================
@@ -31,6 +31,13 @@
using namespace mlir;
using namespace mlir::tosa;
+namespace {
+template <typename OpTy>
----------------
sahas3 wrote:
Template specialization is not needed I think.
You can pass `Type` directly, will reduce compilation time a bit.
https://github.com/llvm/llvm-project/pull/188188
More information about the Mlir-commits
mailing list