aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/fixtures/DepthConcatenateLayerFixture.h
diff options
context:
space:
mode:
authorMoritz Pflanzer <moritz.pflanzer@arm.com>2017-09-12 09:28:56 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commitfb205683d5291518ee64acdd07ffef0692fc705c (patch)
tree8d91013f03ad21237d783bf2d8c9224d309ca0e7 /tests/validation/fixtures/DepthConcatenateLayerFixture.h
parent72898feff6dd07153384ab41246b93e44d046b3b (diff)
downloadComputeLibrary-fb205683d5291518ee64acdd07ffef0692fc705c.tar.gz
COMPMID-417: Fix DepthConcatenate validation fixture
Change-Id: I4d15b4f31ed571e275a47e254c9df9ba9c95eb82 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/87316 Reviewed-by: Anthony Barbier <anthony.barbier@arm.com> Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
Diffstat (limited to 'tests/validation/fixtures/DepthConcatenateLayerFixture.h')
-rw-r--r--tests/validation/fixtures/DepthConcatenateLayerFixture.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/tests/validation/fixtures/DepthConcatenateLayerFixture.h b/tests/validation/fixtures/DepthConcatenateLayerFixture.h
index 2a2e96e821..633dba23e0 100644
--- a/tests/validation/fixtures/DepthConcatenateLayerFixture.h
+++ b/tests/validation/fixtures/DepthConcatenateLayerFixture.h
@@ -38,16 +38,11 @@
namespace arm_compute
{
-class ITensor;
-class Tensor;
-class ICLTensor;
-class CLTensor;
-
namespace test
{
namespace validation
{
-template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
+template <typename TensorType, typename ITensorType, typename AccessorType, typename FunctionType, typename T>
class DepthConcatenateValidationFixture : public framework::Fixture
{
public:
@@ -99,8 +94,6 @@ protected:
TensorType compute_target(std::vector<TensorShape> shapes, DataType data_type)
{
- using ITensorType = typename std::conditional<std::is_same<TensorType, Tensor>::value, ITensor, ICLTensor>::type;
-
std::vector<TensorType> srcs;
std::vector<ITensorType *> src_ptrs;