aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/graph/backends/Utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/graph/backends/Utils.h')
-rw-r--r--arm_compute/graph/backends/Utils.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/arm_compute/graph/backends/Utils.h b/arm_compute/graph/backends/Utils.h
index c7a50d93c6..2ca97ff5c5 100644
--- a/arm_compute/graph/backends/Utils.h
+++ b/arm_compute/graph/backends/Utils.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018 ARM Limited.
+ * Copyright (c) 2018-2019 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -26,6 +26,7 @@
#include "arm_compute/graph/GraphContext.h"
#include "arm_compute/runtime/IMemoryManager.h"
+#include "arm_compute/runtime/IWeightsManager.h"
namespace arm_compute
{
@@ -90,6 +91,19 @@ inline std::shared_ptr<IMemoryManager> get_memory_manager(GraphContext &ctx, Tar
bool enabled = ctx.config().use_function_memory_manager && (ctx.memory_management_ctx(target) != nullptr);
return enabled ? ctx.memory_management_ctx(target)->intra_mm : nullptr;
}
+
+/** Returns the weights manager for a given target
+ *
+ * @param[in] ctx Graph context containing weight management metadata
+ * @param[in] target Target to retrieve the weights manager from
+ *
+ * @return The weights manager for the given target else false
+ */
+inline std::shared_ptr<IWeightsManager> get_weights_manager(GraphContext &ctx, Target target)
+{
+ bool enabled = ctx.config().use_function_weights_manager && (ctx.weights_management_ctx(target) != nullptr);
+ return enabled ? ctx.weights_management_ctx(target)->wm : nullptr;
+}
} // namespace backends
} // namespace graph
} // namespace arm_compute