From bcf9f16605e8ce084a0c188abd16ee2bd56e59f4 Mon Sep 17 00:00:00 2001 From: Aron Virginas-Tar Date: Mon, 15 Oct 2018 11:47:37 +0100 Subject: IVGCVSW-2002: Get rid of IsLayerSupportedCl functions in favor of ILayerSupport interface Change-Id: Ic9172a5534eb243f3467996dd30c4400bc06224e --- src/backends/cl/test/ClLayerTests.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/backends/cl/test') diff --git a/src/backends/cl/test/ClLayerTests.cpp b/src/backends/cl/test/ClLayerTests.cpp index 0f8b75f50e..62ce2cb18f 100755 --- a/src/backends/cl/test/ClLayerTests.cpp +++ b/src/backends/cl/test/ClLayerTests.cpp @@ -84,7 +84,8 @@ BOOST_AUTO_TEST_CASE(Softmax4dSupport) const armnn::TensorInfo outputInfo(numDimensions, &dimensionSizes.front(), armnn::DataType::Float32); // 4D Softmax should be reported as unsupported on the CL backend - BOOST_TEST(!armnn::IsSoftmaxSupportedCl(inputInfo, outputInfo, armnn::SoftmaxDescriptor())); + armnn::ClLayerSupport layerSupport; + BOOST_TEST(!layerSupport.IsSoftmaxSupported(inputInfo, outputInfo, armnn::SoftmaxDescriptor())); } // Splitter -- cgit v1.2.1