[Mlir-commits] [mlir] [mlir][tosa] Add support for matmul_t (PR #203894)

Sayan Saha llvmlistbot at llvm.org
Thu Jun 18 07:00:29 PDT 2026


================
@@ -248,6 +248,14 @@ LogicalResult ProfileInfoDepot::populateProfileInfo(tosa::MatMulOp op) {
   return success();
 }
 
+template <>
+LogicalResult ProfileInfoDepot::populateProfileInfo(tosa::MatMulTOp op) {
+  addValue(op.getA());
+  addValue(op.getB());
+  addValue(op.getOutput());
----------------
sahas3 wrote:

zero-point args are missing?

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


More information about the Mlir-commits mailing list