aboutsummaryrefslogtreecommitdiff
path: root/SUPPORTED_OPS.md
diff options
context:
space:
mode:
authorJohan Alfven <johan.alfven@arm.com>2023-05-07 13:12:37 +0200
committerRickard Bolin <rickard.bolin@arm.com>2023-06-14 12:53:30 +0000
commit8e525ca8aad4a52b80c1986c5067b9b74fb3e321 (patch)
tree85f0a781d011aaf1c7631d34acea4398502a7a9f /SUPPORTED_OPS.md
parentc2c3063d05494f3968a7fead1b3118602fe100b9 (diff)
downloadethos-u-vela-8e525ca8aad4a52b80c1986c5067b9b74fb3e321.tar.gz
MLBEDSW-7748: Add RSQRT support
- Added RSQRT int8 support, implemented as LUT. - Added test to supported operators - Updated SUPPORTED_OPS.md Change-Id: I34904772e044be8d22a6dfe426edf85358a205b7 Signed-off-by: Johan Alfven <johan.alfven@arm.com>
Diffstat (limited to 'SUPPORTED_OPS.md')
-rw-r--r--SUPPORTED_OPS.md11
1 files changed, 10 insertions, 1 deletions
diff --git a/SUPPORTED_OPS.md b/SUPPORTED_OPS.md
index 0c3e1e03..0d42d9c1 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.0`
+Vela version: `3.8.1.dev3+gc66541d.d20230613`
This file complies with
[**Gitiles Markdown syntax**](https://github.com/google/gitiles/blob/master/Documentation/markdown.md)
@@ -64,6 +64,7 @@ Please check the supported operator list for your chosen runtime for further inf
| RESHAPE | [Generic](#tflite-generic-constraints), [Specific](#tflite-reshape-constraints) |
| RESIZE_BILINEAR | [Generic](#tflite-generic-constraints), [Specific](#tflite-resize_bilinear-constraints) |
| RESIZE_NEAREST_NEIGHBOR | [Generic](#tflite-generic-constraints), [Specific](#tflite-resize_nearest_neighbor-constraints) |
+| RSQRT | [Generic](#tflite-generic-constraints), [Specific](#tflite-rsqrt-constraints) |
| SHAPE | [Generic](#tflite-generic-constraints) |
| SLICE | [Generic](#tflite-generic-constraints) |
| SOFTMAX | [Generic](#tflite-generic-constraints), [Specific](#tflite-softmax-constraints) |
@@ -316,6 +317,14 @@ This is a list of constraints that the RESIZE_NEAREST_NEIGHBOR operator must sat
- The size tensor must match the output tensor shape
- Both align_corners and half_pixel_centers can't be True
+### TFLite RSQRT Constraints
+
+This is a list of constraints that the RSQRT operator must satisfy in order to be scheduled on the NPU.
+
+- At least one Input's shape must match the OFM's shape
+- IFM and OFM data types must match
+- IFM must be int8
+
### TFLite SOFTMAX Constraints
This is a list of constraints that the SOFTMAX operator must satisfy in order to be scheduled on the NPU.