aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/BlobLifetimeManager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/BlobLifetimeManager.cpp')
-rw-r--r--src/runtime/BlobLifetimeManager.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/runtime/BlobLifetimeManager.cpp b/src/runtime/BlobLifetimeManager.cpp
index 1323bb3f8c..7a4760a990 100644
--- a/src/runtime/BlobLifetimeManager.cpp
+++ b/src/runtime/BlobLifetimeManager.cpp
@@ -33,13 +33,18 @@
#include <cmath>
#include <map>
-using namespace arm_compute;
-
+namespace arm_compute
+{
BlobLifetimeManager::BlobLifetimeManager()
: _blobs()
{
}
+const BlobLifetimeManager::info_type &BlobLifetimeManager::info() const
+{
+ return _blobs;
+}
+
std::unique_ptr<IMemoryPool> BlobLifetimeManager::create_pool(IAllocator *allocator)
{
ARM_COMPUTE_ERROR_ON(allocator == nullptr);
@@ -92,3 +97,4 @@ void BlobLifetimeManager::update_blobs_and_mappings()
++blob_idx;
}
}
+} // namespace arm_compute