aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/IRuntime.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/armnn/IRuntime.hpp')
-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;