From 3a26920b7cd302364d68830eb6e374311ce17f22 Mon Sep 17 00:00:00 2001 From: Patrik Gustavsson Date: Thu, 21 Jan 2021 08:28:55 +0100 Subject: MLBEDSW-3772 Reshape removal -Removed reshapes in the original graph -Removed the addition of reshapes to the optimized graph -Reshapes with different ifm/ofm quantisation will remain Signed-off-by: Patrik Gustavsson Change-Id: I94862be53dac0d7434815e2aee5ca678228495f8 --- ethosu/vela/debug_database.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'ethosu/vela/debug_database.py') diff --git a/ethosu/vela/debug_database.py b/ethosu/vela/debug_database.py index 006348c0..adf03627 100644 --- a/ethosu/vela/debug_database.py +++ b/ethosu/vela/debug_database.py @@ -25,6 +25,7 @@ import lxml.etree as xml from . import numeric_util from .operation import Operation +from .shape4d import Shape4D class DebugDatabase: @@ -77,7 +78,10 @@ class DebugDatabase: src_uid = cls._sourceUID[parent] uid = len(cls._optimisedUID) cls._optimisedUID[op] = (uid, src_uid) - ofm_shape = numeric_util.full_shape(3, op.outputs[0].shape, 1) + if len(op.ofm_shapes) == 0: + ofm_shape = Shape4D(op.outputs[0].shape) + else: + ofm_shape = op.ofm_shapes[0] cls._optimisedTable.append( [ uid, @@ -85,9 +89,9 @@ class DebugDatabase: str(op.type), op.kernel.width, op.kernel.height, - ofm_shape[-2], - ofm_shape[-3], - ofm_shape[-1], + ofm_shape.width, + ofm_shape.height, + ofm_shape.depth, ] ) -- cgit v1.2.1