aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/CL
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2021-03-12 18:40:30 +0000
committerSheri Zhang <sheri.zhang@arm.com>2021-03-15 12:24:50 +0000
commit42bd26560daa799dbb825a7c6aade61c7ca132a2 (patch)
tree0ca27bc3a92f859baeba97ebc96896ad5f0aaf45 /arm_compute/core/CL
parent3b131ab38fa337af7818d78200b0e7bdf89c5e69 (diff)
downloadComputeLibrary-42bd26560daa799dbb825a7c6aade61c7ca132a2.tar.gz
Revert "Close loaded library on OpenCL symbols destruction"
This reverts commit d62ef4d0df239790a3ccb304ce6dd85ed399fa74. Change-Id: I55614b157a72cb4a6bc180d1e46cafa81e526996 Signed-off-by: Georgios Pinitas <georgios.pinitas@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5264 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Sheri Zhang <sheri.zhang@arm.com>
Diffstat (limited to 'arm_compute/core/CL')
-rw-r--r--arm_compute/core/CL/OpenCL.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/arm_compute/core/CL/OpenCL.h b/arm_compute/core/CL/OpenCL.h
index 64b24dba8f..155c3e4eef 100644
--- a/arm_compute/core/CL/OpenCL.h
+++ b/arm_compute/core/CL/OpenCL.h
@@ -63,12 +63,6 @@ class CLSymbols final
public:
/** Default Constructor */
CLSymbols() noexcept(false);
- /** Destructor */
- ~CLSymbols();
- /** Prevent instances of this class from being copied (As this class contains pointers) */
- CLSymbols(const CLSymbols &) = delete;
- /** Prevent instances of this class from being copied (As this class contains pointers) */
- CLSymbols &operator=(const CLSymbols &) = delete;
/** Load OpenCL symbols from handle
*
* @param[in] handle Handle to load symbols from
@@ -150,7 +144,6 @@ public:
private:
std::pair<bool, bool> _loaded;
- void *_handle;
};
} // namespace arm_compute
#endif /* ARM_COMPUTE_OPENCL_H */