// // Copyright © 2020 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // #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>; } // namespace armnnUtils