aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/OffsetLifetimeManager.h
diff options
context:
space:
mode:
authorMichalis Spyrou <michalis.spyrou@arm.com>2019-09-09 19:23:39 +0100
committerGeorgios Pinitas <georgios.pinitas@arm.com>2019-09-16 15:11:51 +0000
commitcaa7deedfe1b0d0020c6099d8f616ec92b1bd5e9 (patch)
treef33643941f0824d5fa79140070a7c9993acb2851 /arm_compute/runtime/OffsetLifetimeManager.h
parentd87a7b297a5bfc2bad3ba78ea97754d7894e82ef (diff)
downloadComputeLibrary-caa7deedfe1b0d0020c6099d8f616ec92b1bd5e9.tar.gz
COMPMID-2641 [NEON] Create a test case for dynamic tensor support
Change-Id: I181e9acffd34ff1c807c65a822cfafb7327b8c8a Signed-off-by: Michalis Spyrou <michalis.spyrou@arm.com> Reviewed-on: https://review.mlplatform.org/c/1913 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute/runtime/OffsetLifetimeManager.h')
-rw-r--r--arm_compute/runtime/OffsetLifetimeManager.h8
1 files changed, 8 insertions, 0 deletions
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
@@ -41,6 +41,9 @@ class IMemoryPool;
class OffsetLifetimeManager : public ISimpleLifetimeManager
{
public:
+ using info_type = BlobInfo;
+
+public:
/** Constructor */
OffsetLifetimeManager();
/** Prevent instances of this class to be copy constructed */
@@ -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<IMemoryPool> create_pool(IAllocator *allocator) override;