aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/IPoolManager.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/runtime/IPoolManager.h')
-rw-r--r--arm_compute/runtime/IPoolManager.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/arm_compute/runtime/IPoolManager.h b/arm_compute/runtime/IPoolManager.h
index 03cccdd605..4cc3c07b5f 100644
--- a/arm_compute/runtime/IPoolManager.h
+++ b/arm_compute/runtime/IPoolManager.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017 ARM Limited.
+ * Copyright (c) 2017-2018 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -53,6 +53,11 @@ public:
* @param[in] pool Pool to be managed
*/
virtual void register_pool(std::unique_ptr<IMemoryPool> pool) = 0;
+ /** Returns the total number of pools managed by the pool manager
+ *
+ * @return Number of managed pools
+ */
+ virtual size_t num_pools() const = 0;
};
} // arm_compute
#endif /*__ARM_COMPUTE_IPOOLMANAGER_H__ */