aboutsummaryrefslogtreecommitdiff
path: root/tests/benchmark/fixtures/ConvolutionFixture.h
diff options
context:
space:
mode:
authorMichalis Spyrou <michalis.spyrou@arm.com>2019-10-02 17:22:11 +0100
committerMichalis Spyrou <michalis.spyrou@arm.com>2019-10-08 09:08:50 +0000
commit6bff195a51915fd88c1aa1904cf269dbd1a04f50 (patch)
tree645fc3bb8f6bbe05aeb16385a52a696973da0b73 /tests/benchmark/fixtures/ConvolutionFixture.h
parent6665f82b38ce904aa588230546d66e65d38f20d6 (diff)
downloadComputeLibrary-6bff195a51915fd88c1aa1904cf269dbd1a04f50.tar.gz
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 <michalis.spyrou@arm.com> Reviewed-on: https://review.mlplatform.org/c/2041 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/benchmark/fixtures/ConvolutionFixture.h')
-rw-r--r--tests/benchmark/fixtures/ConvolutionFixture.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/benchmark/fixtures/ConvolutionFixture.h b/tests/benchmark/fixtures/ConvolutionFixture.h
index 3f9c2a4f27..f355168ec1 100644
--- a/tests/benchmark/fixtures/ConvolutionFixture.h
+++ b/tests/benchmark/fixtures/ConvolutionFixture.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018 ARM Limited.
+ * Copyright (c) 2018-2019 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -73,7 +73,7 @@ public:
dst = create_tensor<TensorType>(src_shape, output_data_type);
// Configure function
- configure_target(convolution_func, src, dst, conv.data(), scale, border_mode, constant_border_value);
+ configure_target(src, dst, conv.data(), scale, border_mode, constant_border_value);
// Allocate tensors
src.allocator()->allocate();
@@ -96,7 +96,7 @@ public:
}
protected:
- virtual void configure_target(Function &func, TensorType &src, TensorType &dst, const int16_t *conv, uint32_t scale,
+ virtual void configure_target(TensorType &src, TensorType &dst, const int16_t *conv, uint32_t scale,
BorderMode border_mode, uint8_t border_value) = 0;
protected:
@@ -122,7 +122,7 @@ public:
}
protected:
- void configure_target(Function &func, TensorType &src, TensorType &dst, const int16_t *conv, uint32_t scale,
+ void configure_target(TensorType &src, TensorType &dst, const int16_t *conv, uint32_t scale,
BorderMode border_mode, uint8_t constant_border_value)
{
this->convolution_func.configure(&src, &dst, conv, scale, border_mode, constant_border_value);
@@ -141,7 +141,7 @@ public:
}
protected:
- void configure_target(Function &func, TensorType &src, TensorType &dst, const int16_t *conv, uint32_t scale,
+ void configure_target(TensorType &src, TensorType &dst, const int16_t *conv, uint32_t scale,
BorderMode border_mode, uint8_t constant_border_value)
{
this->convolution_func.configure(&src, &dst, conv, this->_width, this->_height, scale, border_mode, constant_border_value);
@@ -160,7 +160,7 @@ public:
}
protected:
- void configure_target(Function &func, TensorType &src, TensorType &dst, const int16_t *conv, uint32_t scale,
+ void configure_target(TensorType &src, TensorType &dst, const int16_t *conv, uint32_t scale,
BorderMode border_mode, uint8_t constant_border_value)
{
this->convolution_func.configure(&src, &dst, conv, scale, border_mode, constant_border_value);