blob: 99130699e0dc6fcd7d0c6c954c5d2ea2e0cda969 [file] [log] [blame]
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include <arm_compute/runtime/IMemoryPool.h>
namespace armnn
{
class IMemoryPool : public arm_compute::IMemoryPool
{
public:
/// Allocates memory for the entire pool
virtual void AllocatePool() = 0;
/// Releases all memory associated with the pool
virtual void ReleasePool() = 0;
};
} // namespace armnn