// // Copyright © 2017 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include #include #include #include namespace armnn { using CompiledBlobDeleter = std::function; using CompiledBlobPtr = std::unique_ptr; class ISubgraphViewConverter { public: virtual ~ISubgraphViewConverter() {} virtual std::vector CompileNetwork() = 0; }; /// /// Old ISubGraphConverter definition kept for backward compatibility only. /// using ISubGraphConverter ARMNN_DEPRECATED_MSG("This type is no longer supported") = ISubgraphViewConverter; } // namespace armnn