aboutsummaryrefslogtreecommitdiff
path: root/tests/InferenceModel.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/InferenceModel.hpp')
-rw-r--r--tests/InferenceModel.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/InferenceModel.hpp b/tests/InferenceModel.hpp
index 88c704c10e..3429598249 100644
--- a/tests/InferenceModel.hpp
+++ b/tests/InferenceModel.hpp
@@ -479,7 +479,9 @@ public:
ARMNN_SCOPED_HEAP_PROFILING("LoadNetwork");
const auto loading_start_time = armnn::GetTimeNow();
- armnn::INetworkProperties networkProperties(false, false, params.m_AsyncEnabled);
+ armnn::INetworkProperties networkProperties(params.m_AsyncEnabled,
+ armnn::MemorySource::Undefined,
+ armnn::MemorySource::Undefined);
std::string errorMessage;
ret = m_Runtime->LoadNetwork(m_NetworkIdentifier, std::move(optNet), errorMessage, networkProperties);