From b785dd4a4e1e662630f4d79e0f578513958a71fd Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Thu, 19 Sep 2019 12:09:32 +0100 Subject: COMPMID-2670: [CL/GC] Create a test case for dynamic tensor support Change-Id: I35d28786ee3843ac11c1211aea55328782a99382 Signed-off-by: Georgios Pinitas Reviewed-on: https://review.mlplatform.org/c/1958 Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio Comments-Addressed: Arm Jenkins --- arm_compute/runtime/BlobLifetimeManager.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'arm_compute/runtime/BlobLifetimeManager.h') diff --git a/arm_compute/runtime/BlobLifetimeManager.h b/arm_compute/runtime/BlobLifetimeManager.h index 586ad10fa0..a7630e437a 100644 --- a/arm_compute/runtime/BlobLifetimeManager.h +++ b/arm_compute/runtime/BlobLifetimeManager.h @@ -40,6 +40,9 @@ class IMemoryPool; * calculates the systems memory requirements in terms of blobs */ class BlobLifetimeManager : public ISimpleLifetimeManager { +public: + using info_type = std::vector; + public: /** Constructor */ BlobLifetimeManager(); @@ -51,6 +54,11 @@ public: BlobLifetimeManager(BlobLifetimeManager &&) = default; /** Allow instances of this class to be moved */ BlobLifetimeManager &operator=(BlobLifetimeManager &&) = default; + /** Accessor to the pool internal configuration meta-data + * + * @return Lifetime manager internal configuration meta-data + */ + const info_type &info() const; // Inherited methods overridden: std::unique_ptr create_pool(IAllocator *allocator) override; -- cgit v1.2.1