aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/graph/IDeviceBackend.h
diff options
context:
space:
mode:
authorAnthony Barbier <anthony.barbier@arm.com>2018-08-08 13:20:04 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:54 +0000
commitb6eb35371d222c6b7f61210d97ebd7dd9e197458 (patch)
treeaf89729ad68d665916c37abb5fd49e512fa40614 /arm_compute/graph/IDeviceBackend.h
parent1d1f32ce7ef6acea4afd4cf6a929436640b72ccd (diff)
downloadComputeLibrary-b6eb35371d222c6b7f61210d97ebd7dd9e197458.tar.gz
COMPMID-1478: Stop relying on static default OpenCL objects in cl2.hpp
This causes problems when ACL is used as a shared library on Android. Fixes some problems related to creation / destruction order between the Graph's CL backend and core / runtime Change-Id: I716d63fd42f4586df1ffbb6fa97e4db06d3a781b Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/143228 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Michele DiGiorgio <michele.digiorgio@arm.com> Reviewed-by: Gian Marco Iodice <gianmarco.iodice@arm.com>
Diffstat (limited to 'arm_compute/graph/IDeviceBackend.h')
-rw-r--r--arm_compute/graph/IDeviceBackend.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/arm_compute/graph/IDeviceBackend.h b/arm_compute/graph/IDeviceBackend.h
index f28cb1ab42..358d26af81 100644
--- a/arm_compute/graph/IDeviceBackend.h
+++ b/arm_compute/graph/IDeviceBackend.h
@@ -53,9 +53,14 @@ public:
virtual void initialize_backend() = 0;
/** Setups the given graph context
*
- * @param[in] ctx Graph context
+ * @param[in,out] ctx Graph context
*/
virtual void setup_backend_context(GraphContext &ctx) = 0;
+ /** Release the backend specific resources associated to a given graph context
+ *
+ * @param[in,out] ctx Graph context
+ */
+ virtual void release_backend_context(GraphContext &ctx) = 0;
/** Checks if an instantiated backend is actually supported
*
* @return True if the backend is supported else false