From 3e7157ba59f12aa0d277a9b3a7cb3f8a19267338 Mon Sep 17 00:00:00 2001 From: Raul Farkas Date: Tue, 9 May 2023 09:09:17 +0100 Subject: MLBEDSW-7315: Add support for AvgPool with stride_width > 3 * Convert AvgPool with stride_width > 3 and Valid padding to Conv2D to optimize it to run on NPU. Change-Id: I06ab412357f0b09b1498f9019a9d1963a324ad34 Signed-off-by: Raul Farkas --- SUPPORTED_OPS.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'SUPPORTED_OPS.md') diff --git a/SUPPORTED_OPS.md b/SUPPORTED_OPS.md index 947b585a..fdceb43c 100644 --- a/SUPPORTED_OPS.md +++ b/SUPPORTED_OPS.md @@ -134,7 +134,8 @@ This is a list of constraints that the AVERAGE_POOL_2D operator must satisfy in - Stride values for both width and height must be integer types - IFM and OFM data types must match - Kernel filter values for both width and height must be integer types -- Stride values for both width and height must be in the range [1, 3] +- Stride width must be greater than or equal to 1. + For stride width greater than 3, valid padding needs to be used. - Kernel filter values for both width and height must be in the range [1, 8] - VALID padding: Kernel filter height must be in the range [1, 256] - VALID padding: Product of kernel filter width and height must be in the range [1, 65536] -- cgit v1.2.1