aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorFrancis Murtagh <francis.murtagh@arm.com>2023-07-27 15:23:00 +0100
committerNikhil Raj Arm <nikhil.raj@arm.com>2023-08-03 17:52:23 +0000
commitb179382bcb4944d0137aa9799c3c56a2102ecda2 (patch)
treed842023b2f608e6496fe7267efd70987a185841e /include
parent608000e2381dd4178d30a00b0c05c108d3c57cca (diff)
downloadarmnn-b179382bcb4944d0137aa9799c3c56a2102ecda2.tar.gz
IVGCVSW-7635 Remove deprecated code due to be removed in 23.08 (INetworkProperties)
* Remove INetworkProperties::m_ImportEnabled * Remove INetworkProperties::m_ExportEnabled Change-Id: I246fef76f186c3d54cc39e2b5bc09b738458fef3 Signed-off-by: Francis Murtagh <francis.murtagh@arm.com>
Diffstat (limited to 'include')
-rw-r--r--include/armnn/IRuntime.hpp11
1 files changed, 2 insertions, 9 deletions
diff --git a/include/armnn/IRuntime.hpp b/include/armnn/IRuntime.hpp
index 0da6d80f93..a97e44782f 100644
--- a/include/armnn/IRuntime.hpp
+++ b/include/armnn/IRuntime.hpp
@@ -1,5 +1,5 @@
//
-// Copyright © 2017 Arm Ltd. All rights reserved.
+// Copyright © 2017-2023 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
@@ -48,9 +48,7 @@ struct INetworkProperties
bool profilingEnabled = false,
ProfilingDetailsMethod detailsMethod = ProfilingDetailsMethod::Undefined,
bool externalMemoryManagementEnabled = false)
- : m_ImportEnabled(inputSource != MemorySource::Undefined),
- m_ExportEnabled(outputSource != MemorySource::Undefined),
- m_AsyncEnabled(asyncEnabled),
+ : m_AsyncEnabled(asyncEnabled),
m_ProfilingEnabled(profilingEnabled),
m_OutputNetworkDetailsMethod(detailsMethod),
m_InputSource(inputSource),
@@ -58,11 +56,6 @@ struct INetworkProperties
m_ExternalMemoryManagementEnabled(externalMemoryManagementEnabled)
{}
- /// Deprecated and will be removed in future release.
- const bool m_ImportEnabled;
- /// Deprecated and will be removed in future release.
- const bool m_ExportEnabled;
-
const bool m_AsyncEnabled;
const bool m_ProfilingEnabled;