aboutsummaryrefslogtreecommitdiff
path: root/tests/InferenceModel.hpp
diff options
context:
space:
mode:
authorNina Drozd <nina.drozd@arm.com>2018-09-10 14:26:44 +0100
committerMatthew Bentham <matthew.bentham@arm.com>2018-09-25 14:54:29 +0100
commit549ae37b51facbdf940bff62b45b3b74c1bc63c9 (patch)
tree91cd99ca63550cda638cec890c60043aa78b936a /tests/InferenceModel.hpp
parenteb06191bdaeab6640691a00349eb93141fb49fe8 (diff)
downloadarmnn-549ae37b51facbdf940bff62b45b3b74c1bc63c9.tar.gz
IVGCVSW-1733 - set enableGpuProfiling in CreationOptions for Runtime if -e flag is set,
false by default, use this globally same as concurrent flag, removed -e option from RunCsvTest options, this is passed in from main Change-Id: I246c2c40b1a113b896be0d41aba528e79ecdba0d
Diffstat (limited to 'tests/InferenceModel.hpp')
-rw-r--r--tests/InferenceModel.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/InferenceModel.hpp b/tests/InferenceModel.hpp
index 6b81f80cbc..2e0aff981a 100644
--- a/tests/InferenceModel.hpp
+++ b/tests/InferenceModel.hpp
@@ -241,6 +241,7 @@ public:
else
{
armnn::IRuntime::CreationOptions options;
+ options.m_EnableGpuProfiling = m_EnableProfiling;
m_Runtime = std::move(armnn::IRuntime::Create(options));
}