From 79141b9662547eeefb3ad533637223de40726e12 Mon Sep 17 00:00:00 2001 From: David Beck Date: Tue, 23 Oct 2018 16:09:36 +0100 Subject: IVGCVSW-2071 : remove GetCompute() from the WorkloadFactory interface Change-Id: I44a9d26d1a5d876d381aee4c6450af62811d0dbb --- src/armnn/test/CreateWorkload.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/armnn') diff --git a/src/armnn/test/CreateWorkload.hpp b/src/armnn/test/CreateWorkload.hpp index aac0a4ae6d..5308a1c1dc 100644 --- a/src/armnn/test/CreateWorkload.hpp +++ b/src/armnn/test/CreateWorkload.hpp @@ -32,7 +32,7 @@ std::unique_ptr MakeAndCheckWorkload(Layer& layer, Graph& graph, const BOOST_TEST(workload.get() == boost::polymorphic_downcast(workload.get()), "Cannot convert to derived class"); std::string reasonIfUnsupported; - layer.SetBackendId(factory.GetCompute()); + layer.SetBackendId(factory.GetBackendId()); BOOST_TEST(factory.IsLayerSupported(layer, layer.GetDataType(), reasonIfUnsupported)); return std::unique_ptr(static_cast(workload.release())); } -- cgit v1.2.1