[Mlir-commits] [mlir] [mlir][tosa] Finalize profile-based validation for TOSA v1.0 (PR #131208)
Luke Hutton
llvmlistbot at llvm.org
Mon Mar 17 07:22:01 PDT 2025
================
@@ -406,9 +431,9 @@ extensionComplianceMap = {
{{Extension::fp8e4m3}, {{fp8e4m3T, fp8e4m3T}}},
{{Extension::fp8e5m2}, {{fp8e5m2T, fp8e5m2T}}},
{{Extension::bf16}, {{bf16T, bf16T}}}}},
- {"tosa.dim",
- {{{Extension::fp8e4m3}, {{fp8e4m3T}}},
- {{Extension::fp8e5m2}, {{fp8e5m2T}}},
- {{Extension::bf16}, {{bf16T}}}}},
+ {"tosa.variable_write",
+ {{{Extension::variable}, {{i8T}, {fp16T}, {fp32T}}}}},
+ {"tosa.variable_read",
+ {{{Extension::variable}, {{i8T}, {fp16T}, {fp32T}}}}},
----------------
lhutton1 wrote:
Some of the operators seem to be declared to ignore when populating compliance info, now that they are listed here, should the code below be updated to reflect this: https://github.com/llvm/llvm-project/pull/131208/files#diff-97cc34fa7e2a0ae27da6c64c8d0c6873ec4ca9018d9c5e9d0b7e44ff185f156dR241?
https://github.com/llvm/llvm-project/pull/131208
More information about the Mlir-commits
mailing list