aboutsummaryrefslogtreecommitdiff
path: root/SUPPORTED_OPS.md
diff options
context:
space:
mode:
authorAlexander Hansson <Alexander.Hansson@arm.com>2023-05-31 15:03:03 +0000
committerAlexander Hansson <Alexander.Hansson@arm.com>2023-06-19 17:12:06 +0000
commit90c34b5948a92d27a882374e16b335597ea7e494 (patch)
treef910ab7f6cd26e0edba5ffdcf68f4a3a9614bebe /SUPPORTED_OPS.md
parent85b77901b72865cc0071f294bd9177288c0bc4e3 (diff)
downloadethos-u-vela-90c34b5948a92d27a882374e16b335597ea7e494.tar.gz
MLBEDSW-7654: Extend support for Mean where HxW > 4096
* Convert Means with large IFMs to several DeptwiseConv2DBias and Add operations. * Update tflite supported operator check with new height and width constraints. * Update unit-tests to verify supported operator changes. * Fix output-diff for 2D IFMs (MLBEDSW-7772) Signed-off-by: Alexander Hansson <Alexander.Hansson@arm.com> Change-Id: Ifae6fb1cdac475ae7dac5116c5f13631ff82108a
Diffstat (limited to 'SUPPORTED_OPS.md')
-rw-r--r--SUPPORTED_OPS.md10
1 files changed, 6 insertions, 4 deletions
diff --git a/SUPPORTED_OPS.md b/SUPPORTED_OPS.md
index 5258946c..c1c58d38 100644
--- a/SUPPORTED_OPS.md
+++ b/SUPPORTED_OPS.md
@@ -19,7 +19,7 @@ limitations under the License.
# Supported Ops
This file was automatically generated by Vela using the `--supported-ops-report` parameter.
-Vela version: `3.8.1.dev7+g0f09dd2`
+Vela version: `3.8.1.dev9+g85b7790.d20230616`
This file complies with
[**Gitiles Markdown syntax**](https://github.com/google/gitiles/blob/master/Documentation/markdown.md)
@@ -252,9 +252,11 @@ This is a list of constraints that the MEAN operator must satisfy in order to be
- Input tensor must be at least 2D
- Axis indices must correspond to height and width axes
-- Product of height and width must be no greater than 4096
-- For single axis averages across the height dimension:
- IFM height must be no greater than 64
+- Product of height and width must be no greater than:
+ - 16777216 for signed 8-bit inputs
+ - 8388608 for unsigned 8-bit inputs
+ - 65536 for signed 16-bit inputs
+- Width must be no greater than 4096
### TFLite MINIMUM Constraints