aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorKevin May <kevin.may@arm.com>2021-02-04 10:27:41 +0000
committerKevin May <kevin.may@arm.com>2021-02-08 14:01:38 +0000
commitd92a6e4c19567cb03de76963068c002353cea528 (patch)
tree84f0148df05a6ec4b4a550281a63de374353cfeb /tests
parent92dd48a170c5fbce9f46bfcea8df97b3c3ebdccb (diff)
downloadarmnn-d92a6e4c19567cb03de76963068c002353cea528.tar.gz
IVGCVSW-4873 Implement Pimpl Idiom for IRuntime
Signed-off-by: Kevin May <kevin.may@arm.com> Change-Id: I52448938735b2aa678c47e0f3061c87fa0c693b1
Diffstat (limited to 'tests')
-rw-r--r--tests/profiling/gatordmock/tests/GatordMockTests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/profiling/gatordmock/tests/GatordMockTests.cpp b/tests/profiling/gatordmock/tests/GatordMockTests.cpp
index 4fd884cec4..b88ad45d11 100644
--- a/tests/profiling/gatordmock/tests/GatordMockTests.cpp
+++ b/tests/profiling/gatordmock/tests/GatordMockTests.cpp
@@ -404,7 +404,7 @@ BOOST_AUTO_TEST_CASE(GatorDMockTimeLineActivation)
armnn::IRuntime::CreationOptions options;
options.m_ProfilingOptions.m_EnableProfiling = true;
options.m_ProfilingOptions.m_TimelineEnabled = true;
- armnn::Runtime runtime(options);
+ armnn::RuntimeImpl runtime(options);
auto basePipeServer = connectionHandler.GetNewBasePipeServer(false);
gatordmock::GatordMockService mockService(std::move(basePipeServer), false);