From 8910528b126fed87628c23f7e51f7e018b13989a Mon Sep 17 00:00:00 2001 From: Matthew Bentham Date: Tue, 20 Nov 2018 14:33:33 +0000 Subject: IVGCVSW-1199 Disable auto-flattening of Compute Library tensors This is one of the reasons why the tests in https://review.mlplatform.org/#/c/ml/armnn/+/237/ are failing (but not the only reason). Change-Id: If485bade2a6dd013cba826cec71d748fc7747249 --- src/backends/aclCommon/test/CreateWorkloadClNeon.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/backends/aclCommon/test') diff --git a/src/backends/aclCommon/test/CreateWorkloadClNeon.hpp b/src/backends/aclCommon/test/CreateWorkloadClNeon.hpp index ec2072d243..adabed07f8 100644 --- a/src/backends/aclCommon/test/CreateWorkloadClNeon.hpp +++ b/src/backends/aclCommon/test/CreateWorkloadClNeon.hpp @@ -47,7 +47,9 @@ boost::test_tools::predicate_result CompareTensorHandleShape(IComputeTensorHandl if (info->dimension(i) != expectedDimension) { boost::test_tools::predicate_result res(false); - res.message() << "Different dimension [" << info->dimension(i) << "!=" << expectedDimension << "]"; + res.message() << "For dimension " << i << + " expected size " << expectedDimension << + " got " << info->dimension(i); return res; } @@ -104,4 +106,4 @@ void CreateMemCopyWorkloads(IWorkloadFactory& factory) BOOST_TEST((outputHandle2->GetTensorInfo() == TensorInfo({2, 3}, DataType::Float32))); } -} //namespace \ No newline at end of file +} //namespace -- cgit v1.2.1