aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/fixtures/ColorConvertFixture.h
diff options
context:
space:
mode:
authorSanghoon Lee <sanghoon.lee@arm.com>2018-07-06 13:27:27 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:54 +0000
commitc7b82f1319ad85bc2d203bf7f3e18341792eed26 (patch)
tree216655d83a895556d3b4bcef4c19b239ec2ba7cf /tests/validation/fixtures/ColorConvertFixture.h
parent5b52fe3a4481769adcf42218a3747486cb4e9c14 (diff)
downloadComputeLibrary-c7b82f1319ad85bc2d203bf7f3e18341792eed26.tar.gz
COMPMID-761: Add CL/NEON ColorConvert benchmark tests
Change-Id: I25b42c5b74567bb50444da393d723b7f5cedafad Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/138694 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'tests/validation/fixtures/ColorConvertFixture.h')
-rw-r--r--tests/validation/fixtures/ColorConvertFixture.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/validation/fixtures/ColorConvertFixture.h b/tests/validation/fixtures/ColorConvertFixture.h
index 52a9de87b0..cbaff6dfce 100644
--- a/tests/validation/fixtures/ColorConvertFixture.h
+++ b/tests/validation/fixtures/ColorConvertFixture.h
@@ -129,8 +129,8 @@ protected:
if(1U == _dst_num_planes)
{
- TensorType *dst_plane = static_cast<TensorType *>(ref_dst.plane(0));
- color_convert.configure(plane_src, dst_plane);
+ TensorType *plane_dst = static_cast<TensorType *>(ref_dst.plane(0));
+ color_convert.configure(plane_src, plane_dst);
}
else
{
@@ -141,8 +141,8 @@ protected:
{
if(1U == _dst_num_planes)
{
- TensorType *dst_plane = static_cast<TensorType *>(ref_dst.plane(0));
- color_convert.configure(&ref_src, dst_plane);
+ TensorType *plane_dst = static_cast<TensorType *>(ref_dst.plane(0));
+ color_convert.configure(&ref_src, plane_dst);
}
else
{