From 7e52528f960824f1ea4151df7272218faa771107 Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Thu, 21 Nov 2024 15:32:59 +0000 Subject: [PATCH] [fix] Remove tensor registration due to https://gitlab.eclipse.org/eclipse/aidge/aidge_core/-/commit/c1831eab74706b2956360d53e18c670b97c0db3d?merge_request_iid=259 --- aidge_export_arm_cortexm/export_registry.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/aidge_export_arm_cortexm/export_registry.py b/aidge_export_arm_cortexm/export_registry.py index 46c0653..65e8673 100644 --- a/aidge_export_arm_cortexm/export_registry.py +++ b/aidge_export_arm_cortexm/export_registry.py @@ -3,11 +3,5 @@ from aidge_core.export_utils import ExportLib class ExportLibAidgeARM(ExportLib): _name="aidge_arm" - -# TODO ugly fix for Tensor registration issue... -import aidge_core -aidge_core.register_Tensor(["aidge_arm", aidge_core.dtype.float32], - aidge_core.get_key_value_Tensor(["cpu", aidge_core.dtype.float32])) - class ExportLibCMSISNN(ExportLib): _name="export_cmsisnn" -- GitLab