aboutsummaryrefslogtreecommitdiff
path: root/src/backends/backendsCommon/WorkloadData.hpp
diff options
context:
space:
mode:
authorMatteo Martincigh <matteo.martincigh@arm.com>2019-04-17 15:37:30 +0100
committerMatteo Martincigh <matteo.martincigh@arm.com>2019-04-18 08:50:28 +0100
commit7997a3527218ed821ec933ef3a5e6a3f07409b21 (patch)
treeeeb2db8e8bdebf7f2661b68890ff6d31def7f620 /src/backends/backendsCommon/WorkloadData.hpp
parentc2ebc63baf19ab6c3da6ae7a982c9eba0c0d85be (diff)
downloadarmnn-7997a3527218ed821ec933ef3a5e6a3f07409b21.tar.gz
IVGCVSW-2980 Build ArmNN with the latest version of the driver stack library
* Changed the pre-compiled object held by the pre-compiled layer into a unique pointer, so that now the layer has the ownership of it * Changed the pre-compiled object held by the descriptor and the workload into a naked pointer, to leave the ownership to the layer Change-Id: I4a582e45ca0aa3978e8e40b786c743a6eddce852 Signed-off-by: Matteo Martincigh <matteo.martincigh@arm.com>
Diffstat (limited to 'src/backends/backendsCommon/WorkloadData.hpp')
-rw-r--r--src/backends/backendsCommon/WorkloadData.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backends/backendsCommon/WorkloadData.hpp b/src/backends/backendsCommon/WorkloadData.hpp
index 1b5f86dde7..689c6d26c6 100644
--- a/src/backends/backendsCommon/WorkloadData.hpp
+++ b/src/backends/backendsCommon/WorkloadData.hpp
@@ -411,7 +411,7 @@ struct PreCompiledQueueDescriptor : QueueDescriptorWithParameters<PreCompiledDes
{
}
- std::shared_ptr<void> m_PreCompiledObject;
+ void* m_PreCompiledObject;
void Validate(const WorkloadInfo& workloadInfo) const;
};