[Mlir-commits] [mlir] [mlir][tosa] Add support for block scaled types in matmul_t (PR #207851)
Luke Hutton
llvmlistbot at llvm.org
Mon Jul 13 02:46:19 PDT 2026
================
@@ -62,11 +62,14 @@ profileComplianceMap = {
{{fp32T, fp32T, fp32T, fp32T, fp32T}, SpecificationVersion::V_1_0}}}}},
{"tosa.matmul_t",
{{{Profile::pro_int},
- {{{i8T, i8T, i32T}, SpecificationVersion::V_1_1_DRAFT}}},
+ {{{i8T, i8T, i8T, i8T, i32T}, SpecificationVersion::V_1_1_DRAFT}}},
{{Profile::pro_fp},
- {{{fp16T, fp16T, fp16T}, SpecificationVersion::V_1_1_DRAFT},
- {{fp16T, fp16T, fp32T}, SpecificationVersion::V_1_1_DRAFT},
- {{fp32T, fp32T, fp32T}, SpecificationVersion::V_1_1_DRAFT}}}}},
+ {{{fp16T, fp16T, fp16T, fp16T, fp16T},
+ SpecificationVersion::V_1_1_DRAFT},
+ {{fp16T, fp16T, fp16T, fp16T, fp32T},
+ SpecificationVersion::V_1_1_DRAFT},
+ {{fp32T, fp32T, fp32T, fp32T, fp32T},
+ SpecificationVersion::V_1_1_DRAFT}}}}},
----------------
lhutton1 wrote:
I've corrected this manually for now, but will look at fixing the generation in the specification shortly
https://github.com/llvm/llvm-project/pull/207851
More information about the Mlir-commits
mailing list