From 67cc5fc08da79933361e7cd0af3b6452d2424a61 Mon Sep 17 00:00:00 2001 From: David Monahan Date: Wed, 3 Nov 2021 12:56:41 +0000 Subject: Revert "IVGCVSW-6359 Added support for Float16 (Half) to Execute Network" This reverts commit 2d9956162dd002a41f7fb4fa6753195d33524c7f. Reason for revert: After some discussion, this does technically implement Float16 support for ExecuteNetwork, but not in a way which matches most use cases and is likely to cause issues in the future. Reverting for now. Change-Id: I4ce6de6879216e694631f5dc68e46fb793fae0a9 --- include/armnnUtils/TContainer.hpp | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) (limited to 'include') diff --git a/include/armnnUtils/TContainer.hpp b/include/armnnUtils/TContainer.hpp index d2a868ac18..a55f9df488 100644 --- a/include/armnnUtils/TContainer.hpp +++ b/include/armnnUtils/TContainer.hpp @@ -6,20 +6,15 @@ #pragma once #include -#include #include namespace armnnUtils { -// Standard declaration of TContainer used by ArmNN -// Changes to this declaration constitute an api/abi break, new types should be added as a separate declaration and -// merged on the next planned api/abi update. -using TContainer = mapbox::util::variant, - std::vector, - std::vector, - std::vector, - std::vector>; +// Standard definition of TContainer used by ArmNN, use this definition or add alternative definitions here instead of +// defining your own. + using TContainer = + mapbox::util::variant, std::vector, std::vector, std::vector>; } // namespace armnnUtils -- cgit v1.2.1