From 6bff195a51915fd88c1aa1904cf269dbd1a04f50 Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Wed, 2 Oct 2019 17:22:11 +0100 Subject: COMPMID-2486: Remove disabled compiler warnings Removed -Wno-unused-parameter and -Wno-deprecated-declarations compilation flags. Plus, 3RDPARTY_UPDATE. Change-Id: I43098c7af527d5651aad3c597b508a56f8813dda Signed-off-by: Michalis Spyrou Reviewed-on: https://review.mlplatform.org/c/2041 Comments-Addressed: Arm Jenkins Reviewed-by: Georgios Pinitas Tested-by: Arm Jenkins --- tests/benchmark/fixtures/ElementWiseUnaryFixture.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'tests/benchmark/fixtures/ElementWiseUnaryFixture.h') diff --git a/tests/benchmark/fixtures/ElementWiseUnaryFixture.h b/tests/benchmark/fixtures/ElementWiseUnaryFixture.h index e4f76a441f..a26f7c84c0 100644 --- a/tests/benchmark/fixtures/ElementWiseUnaryFixture.h +++ b/tests/benchmark/fixtures/ElementWiseUnaryFixture.h @@ -44,7 +44,7 @@ class ElementWiseUnaryBenchmarkFixture : public framework::Fixture { public: template - void setup(TensorShape input_shape, DataType input_data_type, ElementWiseUnary op) + void setup(TensorShape input_shape, DataType input_data_type) { src = create_tensor(input_shape, input_data_type); dst = create_tensor(input_shape, input_data_type); @@ -80,7 +80,7 @@ public: template void setup(const TensorShape &shape, DataType data_type) { - ElementWiseUnaryBenchmarkFixture::setup(shape, data_type, ElementWiseUnary::RSQRT); + ElementWiseUnaryBenchmarkFixture::setup(shape, data_type); } }; @@ -91,7 +91,7 @@ public: template void setup(const TensorShape &shape, DataType data_type) { - ElementWiseUnaryBenchmarkFixture::setup(shape, data_type, ElementWiseUnary::EXP); + ElementWiseUnaryBenchmarkFixture::setup(shape, data_type); } }; @@ -102,7 +102,7 @@ public: template void setup(const TensorShape &shape, DataType data_type) { - ElementWiseUnaryBenchmarkFixture::setup(shape, data_type, ElementWiseUnary::NEG); + ElementWiseUnaryBenchmarkFixture::setup(shape, data_type); } }; @@ -113,7 +113,7 @@ public: template void setup(const TensorShape &shape, DataType data_type) { - ElementWiseUnaryBenchmarkFixture::setup(shape, data_type, ElementWiseUnary::LOG); + ElementWiseUnaryBenchmarkFixture::setup(shape, data_type); } }; @@ -124,7 +124,7 @@ public: template void setup(const TensorShape &shape, DataType data_type) { - ElementWiseUnaryBenchmarkFixture::setup(shape, data_type, ElementWiseUnary::ABS); + ElementWiseUnaryBenchmarkFixture::setup(shape, data_type); } }; @@ -135,7 +135,7 @@ public: template void setup(const TensorShape &shape, DataType data_type) { - ElementWiseUnaryBenchmarkFixture::setup(shape, data_type, ElementWiseUnary::SIN); + ElementWiseUnaryBenchmarkFixture::setup(shape, data_type); } }; } // namespace validation -- cgit v1.2.1