aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2020-10-02 10:58:25 +0100
committerGeorgios Pinitas <georgios.pinitas@arm.com>2020-10-02 13:23:01 +0000
commit9aa05a67b58b65603fd52d76690a17a155e89030 (patch)
tree172a97cddfdd219e254400b0d5a51ab5d2fadf05 /tests
parentc229e8cadf0d7d088f17f02619eb4dd8af94244f (diff)
downloadComputeLibrary-9aa05a67b58b65603fd52d76690a17a155e89030.tar.gz
COMPMID-3814: Nightly failure - validation build fails for FastCorners, ElementwiseMax, ElementwiseMin, ElementwiseSquaredDiff
Change-Id: I3833de3be6c6d573c68d3fee0cf0f42bad260817 Signed-off-by: Manuel Bottini <manuel.bottini@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4072 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michalis Spyrou <michalis.spyrou@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/validation/CL/ElementwiseMax.cpp1
-rw-r--r--tests/validation/CL/ElementwiseMin.cpp1
-rw-r--r--tests/validation/CL/ElementwiseSquaredDiff.cpp1
-rw-r--r--tests/validation/CL/FastCorners.cpp2
-rw-r--r--tests/validation/CL/PReluLayer.cpp1
-rw-r--r--tests/validation/NEON/FastCorners.cpp2
6 files changed, 0 insertions, 8 deletions
diff --git a/tests/validation/CL/ElementwiseMax.cpp b/tests/validation/CL/ElementwiseMax.cpp
index 3aa84de0d8..bf8bb413aa 100644
--- a/tests/validation/CL/ElementwiseMax.cpp
+++ b/tests/validation/CL/ElementwiseMax.cpp
@@ -46,7 +46,6 @@ namespace
RelativeTolerance<float> tolerance_fp32(0.000001f);
RelativeTolerance<float> tolerance_fp16(0.001f);
-constexpr unsigned int num_elems_processed_per_iteration = 16;
/** Input data sets **/
const auto ElementwiseMaxU8Dataset = combine(combine(framework::dataset::make("DataType", DataType::U8), framework::dataset::make("DataType", DataType::U8)), framework::dataset::make("DataType",
DataType::U8));
diff --git a/tests/validation/CL/ElementwiseMin.cpp b/tests/validation/CL/ElementwiseMin.cpp
index 5f9d572a13..3b3d6a0639 100644
--- a/tests/validation/CL/ElementwiseMin.cpp
+++ b/tests/validation/CL/ElementwiseMin.cpp
@@ -46,7 +46,6 @@ namespace
RelativeTolerance<float> tolerance_fp32(0.000001f);
RelativeTolerance<float> tolerance_fp16(0.001f);
-constexpr unsigned int num_elems_processed_per_iteration = 16;
/** Input data sets **/
const auto ElementwiseMinU8Dataset = combine(combine(framework::dataset::make("DataType", DataType::U8), framework::dataset::make("DataType", DataType::U8)), framework::dataset::make("DataType",
DataType::U8));
diff --git a/tests/validation/CL/ElementwiseSquaredDiff.cpp b/tests/validation/CL/ElementwiseSquaredDiff.cpp
index 1a6513e446..bdae81f1f6 100644
--- a/tests/validation/CL/ElementwiseSquaredDiff.cpp
+++ b/tests/validation/CL/ElementwiseSquaredDiff.cpp
@@ -47,7 +47,6 @@ RelativeTolerance<float> tolerance_fp32(0.000001f);
RelativeTolerance<float> tolerance_fp16(0.001f);
AbsoluteTolerance<float> tolerance_qsymm16(1);
-constexpr unsigned int num_elems_processed_per_iteration = 16;
/** Input data sets **/
const auto ElementwiseSquaredDiffU8Dataset = combine(combine(framework::dataset::make("DataType", DataType::U8), framework::dataset::make("DataType", DataType::U8)),
framework::dataset::make("DataType",
diff --git a/tests/validation/CL/FastCorners.cpp b/tests/validation/CL/FastCorners.cpp
index 63d32fb964..a7b29839b5 100644
--- a/tests/validation/CL/FastCorners.cpp
+++ b/tests/validation/CL/FastCorners.cpp
@@ -44,8 +44,6 @@ namespace validation
{
namespace
{
-/* Radius of the Bresenham circle around the candidate point */
-const unsigned int bresenham_radius = 3;
/* Tolerance used to compare corner strengths */
const AbsoluteTolerance<float> tolerance(0.5f);
} // namespace
diff --git a/tests/validation/CL/PReluLayer.cpp b/tests/validation/CL/PReluLayer.cpp
index f06409d2fe..ed5e57f669 100644
--- a/tests/validation/CL/PReluLayer.cpp
+++ b/tests/validation/CL/PReluLayer.cpp
@@ -46,7 +46,6 @@ namespace
RelativeTolerance<float> tolerance_fp32(0.000001f);
RelativeTolerance<float> tolerance_fp16(0.001f);
-constexpr unsigned int num_elems_processed_per_iteration = 16;
/** Input data sets **/
const auto PReluLayerU8Dataset = combine(combine(framework::dataset::make("DataType", DataType::U8), framework::dataset::make("DataType", DataType::U8)),
framework::dataset::make("DataType",
diff --git a/tests/validation/NEON/FastCorners.cpp b/tests/validation/NEON/FastCorners.cpp
index 96dadc5169..a7e0411f28 100644
--- a/tests/validation/NEON/FastCorners.cpp
+++ b/tests/validation/NEON/FastCorners.cpp
@@ -44,8 +44,6 @@ namespace validation
{
namespace
{
-/* Radius of the Bresenham circle around the candidate point */
-const unsigned int bresenham_radius = 3;
/* Tolerance used to compare corner strengths */
const AbsoluteTolerance<float> tolerance(0.5f);
} // namespace