[Mlir-commits] [mlir] [mlir][tosa] Add support for matmul_t (PR #203894)
Luke Hutton
llvmlistbot at llvm.org
Fri Jun 19 01:22:49 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());
----------------
lhutton1 wrote:
These types are validated for equality to the input types by the verifier, so they can be skipped here
https://github.com/llvm/llvm-project/pull/203894
More information about the Mlir-commits
mailing list