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.hpp14
1 files changed, 10 insertions, 4 deletions
diff --git a/include/armnn/IRuntime.hpp b/include/armnn/IRuntime.hpp
index 93f8b0fd5b..bdfd9b224b 100644
--- a/include/armnn/IRuntime.hpp
+++ b/include/armnn/IRuntime.hpp
@@ -43,7 +43,8 @@ struct INetworkProperties
m_ProfilingEnabled(profilingEnabled),
m_OutputNetworkDetailsMethod(ProfilingDetailsMethod::Undefined),
m_InputSource(m_ImportEnabled ? MemorySource::Malloc : MemorySource::Undefined),
- m_OutputSource(m_ExportEnabled ? MemorySource::Malloc : MemorySource::Undefined)
+ m_OutputSource(m_ExportEnabled ? MemorySource::Malloc : MemorySource::Undefined),
+ m_ExternalMemoryManagementEnabled(false)
{}
ARMNN_DEPRECATED_MSG_REMOVAL_DATE("Please use INetworkProperties constructor without numThreads argument", "22.02")
@@ -58,7 +59,8 @@ struct INetworkProperties
m_ProfilingEnabled(profilingEnabled),
m_OutputNetworkDetailsMethod(ProfilingDetailsMethod::Undefined),
m_InputSource(inputSource),
- m_OutputSource(outputSource)
+ m_OutputSource(outputSource),
+ m_ExternalMemoryManagementEnabled(false)
{
armnn::IgnoreUnused(numThreads);
}
@@ -67,14 +69,16 @@ struct INetworkProperties
MemorySource inputSource,
MemorySource outputSource,
bool profilingEnabled = false,
- ProfilingDetailsMethod detailsMethod = ProfilingDetailsMethod::Undefined)
+ ProfilingDetailsMethod detailsMethod = ProfilingDetailsMethod::Undefined,
+ bool externalMemoryManagementEnabled = false)
: m_ImportEnabled(inputSource != MemorySource::Undefined),
m_ExportEnabled(outputSource != MemorySource::Undefined),
m_AsyncEnabled(asyncEnabled),
m_ProfilingEnabled(profilingEnabled),
m_OutputNetworkDetailsMethod(detailsMethod),
m_InputSource(inputSource),
- m_OutputSource(outputSource)
+ m_OutputSource(outputSource),
+ m_ExternalMemoryManagementEnabled(externalMemoryManagementEnabled)
{}
/// Deprecated and will be removed in future release.
@@ -91,6 +95,8 @@ struct INetworkProperties
const MemorySource m_InputSource;
const MemorySource m_OutputSource;
+ const bool m_ExternalMemoryManagementEnabled;
+
virtual ~INetworkProperties() {}
};