aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/fixtures/ArithmeticSubtractionFixture.h
diff options
context:
space:
mode:
authorGiorgio Arena <giorgio.arena@arm.com>2018-08-10 16:27:11 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:54 +0000
commitc3b2e07552eb8a56f8c5e319b9890a6bb0360202 (patch)
tree0f2f44239e6c816e2f030d171ffee5eb5efa093c /tests/validation/fixtures/ArithmeticSubtractionFixture.h
parent5a65cfd30e571bc5c24e2333e256f2a4b630f8cb (diff)
downloadComputeLibrary-c3b2e07552eb8a56f8c5e319b9890a6bb0360202.tar.gz
COMPMID-1188 Remove some FixedPoint leftovers from tests
Change-Id: I9e9b267ea58fd2339467af6f49ae76e9195cbc61 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/143682 Reviewed-by: Michele DiGiorgio <michele.digiorgio@arm.com> Tested-by: Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/validation/fixtures/ArithmeticSubtractionFixture.h')
-rw-r--r--tests/validation/fixtures/ArithmeticSubtractionFixture.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/tests/validation/fixtures/ArithmeticSubtractionFixture.h b/tests/validation/fixtures/ArithmeticSubtractionFixture.h
index 04bb53a184..9897677691 100644
--- a/tests/validation/fixtures/ArithmeticSubtractionFixture.h
+++ b/tests/validation/fixtures/ArithmeticSubtractionFixture.h
@@ -41,7 +41,7 @@ namespace test
namespace validation
{
template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2 = T1, typename T3 = T1>
-class ArithmeticSubtractionValidationFixedPointFixture : public framework::Fixture
+class ArithmeticSubtractionValidationFixture : public framework::Fixture
{
public:
template <typename...>
@@ -108,16 +108,6 @@ protected:
TensorType _target{};
SimpleTensor<T3> _reference{};
};
-template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2 = T1, typename T3 = T1>
-class ArithmeticSubtractionValidationFixture : public ArithmeticSubtractionValidationFixedPointFixture<TensorType, AccessorType, FunctionType, T1, T2, T3>
-{
-public:
- template <typename...>
- void setup(TensorShape shape, DataType data_type0, DataType data_type1, DataType output_data_type, ConvertPolicy convert_policy)
- {
- ArithmeticSubtractionValidationFixedPointFixture<TensorType, AccessorType, FunctionType, T1, T2, T3>::setup(shape, data_type0, data_type1, output_data_type, convert_policy);
- }
-};
} // namespace validation
} // namespace test
} // namespace arm_compute