From c74682cfd27eb2c203ce4486e712916c45da9881 Mon Sep 17 00:00:00 2001 From: Patrik Gustavsson Date: Tue, 17 Aug 2021 14:26:38 +0200 Subject: TOSA: Support for AVGPOOL, MAXPOOL and CONV2D Added support for -AVGPOOL and CONV2D with TFLite correspondence -MAXPOOL -additional support for replacing RESCALE ops with avgpool. No support for breaking down tensors over the size supported by NPU. Signed-off-by: Patrik Gustavsson Change-Id: I1d2aa50ac30a26283b3e6f1fe88cba1544b7c189 --- ethosu/vela/api.py | 1 + 1 file changed, 1 insertion(+) (limited to 'ethosu/vela/api.py') diff --git a/ethosu/vela/api.py b/ethosu/vela/api.py index 69c60406..d516b8dc 100644 --- a/ethosu/vela/api.py +++ b/ethosu/vela/api.py @@ -25,6 +25,7 @@ from typing import Tuple import numpy + API_VERSION_MAJOR = 1 API_VERSION_MINOR = 1 API_VERSION = f"{API_VERSION_MAJOR}.{API_VERSION_MINOR}" -- cgit v1.2.1