From caa7deedfe1b0d0020c6099d8f616ec92b1bd5e9 Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Mon, 9 Sep 2019 19:23:39 +0100 Subject: COMPMID-2641 [NEON] Create a test case for dynamic tensor support Change-Id: I181e9acffd34ff1c807c65a822cfafb7327b8c8a Signed-off-by: Michalis Spyrou Reviewed-on: https://review.mlplatform.org/c/1913 Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- arm_compute/runtime/OffsetLifetimeManager.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'arm_compute/runtime/OffsetLifetimeManager.h') diff --git a/arm_compute/runtime/OffsetLifetimeManager.h b/arm_compute/runtime/OffsetLifetimeManager.h index 26aeb1ef6a..748f3b6f81 100644 --- a/arm_compute/runtime/OffsetLifetimeManager.h +++ b/arm_compute/runtime/OffsetLifetimeManager.h @@ -40,6 +40,9 @@ class IMemoryPool; * calculates the systems memory requirements in terms of a single blob and a list of offsets */ class OffsetLifetimeManager : public ISimpleLifetimeManager { +public: + using info_type = BlobInfo; + public: /** Constructor */ OffsetLifetimeManager(); @@ -51,6 +54,11 @@ public: OffsetLifetimeManager(OffsetLifetimeManager &&) = default; /** Allow instances of this class to be moved */ OffsetLifetimeManager &operator=(OffsetLifetimeManager &&) = default; + /** Accessor to the pool internal configuration meta-data + * + * @return Pool internal configuration meta-data + */ + const info_type &info() const; // Inherited methods overridden: std::unique_ptr create_pool(IAllocator *allocator) override; -- cgit v1.2.1