// // Copyright © 2021 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include #include namespace armnn { class MemoryOptimizerValidator { public: explicit MemoryOptimizerValidator(std::shared_ptr strategy) : m_Strategy(strategy) { }; bool Validate(std::vector& memBlocks); private: std::shared_ptr m_Strategy; }; } // namespace armnn