From 3fec1ea7e35420ef87de8a98aed0437570251969 Mon Sep 17 00:00:00 2001 From: janeil01 Date: Thu, 7 Nov 2019 09:47:20 +0000 Subject: IVGCVSW-4067 Change LayerGuid to use ProfilingGuid * Refactoring to enable ProfilingGuid * Add profiling includes to Android.mk Signed-off-by: Jan Eilers Change-Id: Ieb25e15e3dc302eb42817d824ad8411ac76dcfe8 --- src/backends/backendsCommon/test/OptimizationViewsTests.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/backends/backendsCommon/test') diff --git a/src/backends/backendsCommon/test/OptimizationViewsTests.cpp b/src/backends/backendsCommon/test/OptimizationViewsTests.cpp index 594fd450c8..67c3e2c94d 100644 --- a/src/backends/backendsCommon/test/OptimizationViewsTests.cpp +++ b/src/backends/backendsCommon/test/OptimizationViewsTests.cpp @@ -25,11 +25,11 @@ void CheckLayers(Graph& graph) { case LayerType::Input: ++m_inputLayerCount; - if (layer->GetGuid() == 0) + if (layer->GetGuid() == profiling::ProfilingGuid(0)) { BOOST_TEST(layer->GetName() == "inLayer0"); } - else if (layer->GetGuid() == 1) + else if (layer->GetGuid() == profiling::ProfilingGuid(1)) { BOOST_TEST(layer->GetName() == "inLayer1"); } -- cgit v1.2.1