aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/fixtures/ConvolutionFixture.h
diff options
context:
space:
mode:
authorSanghoon Lee <sanghoon.lee@arm.com>2017-12-22 16:20:11 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:43:10 +0000
commit571b18a1fca4a5ed4dd24a38cb619f4de43ba3ed (patch)
tree17af0604e154c3bb45c02f5a8c9a7d00cc8496c4 /tests/validation/fixtures/ConvolutionFixture.h
parent4b9c58a2b1794763a2ef40f97e46d436166c3d4c (diff)
downloadComputeLibrary-571b18a1fca4a5ed4dd24a38cb619f4de43ba3ed.tar.gz
COMPMID-565 - Implement reference and CL/NEON validation for CustomConvolutionSeparable
Change-Id: I81fae268d158aec882dbeadb5597dc9f7274d865 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/115347 Reviewed-by: Pablo Tello <pablo.tello@arm.com> Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'tests/validation/fixtures/ConvolutionFixture.h')
-rw-r--r--tests/validation/fixtures/ConvolutionFixture.h86
1 files changed, 82 insertions, 4 deletions
diff --git a/tests/validation/fixtures/ConvolutionFixture.h b/tests/validation/fixtures/ConvolutionFixture.h
index 114d38a21a..85070cff83 100644
--- a/tests/validation/fixtures/ConvolutionFixture.h
+++ b/tests/validation/fixtures/ConvolutionFixture.h
@@ -46,7 +46,7 @@ class ConvolutionValidationFixture : public framework::Fixture
{
protected:
template <typename...>
- void setup(TensorShape shape, DataType data_type, BorderMode border_mode, const unsigned int width, const unsigned int height)
+ void setup(TensorShape shape, DataType data_type, BorderMode border_mode, const unsigned int width, const unsigned int height, const bool is_separable = false)
{
std::mt19937 gen(library->seed());
std::uniform_int_distribution<uint8_t> distribution(0, 255);
@@ -60,10 +60,19 @@ protected:
ARM_COMPUTE_ERROR_ON(3 != height && 5 != height && 7 != height && 9 != height);
int16_t conv[width * height];
- create_conv(conv);
- _width = width;
- _height = height;
+ _width = width;
+ _height = height;
+
+ if(is_separable)
+ {
+ create_separable_conv(conv);
+ }
+ else
+ {
+ create_conv(conv);
+ }
+
_target = compute_target(shape, data_type, conv, scale, border_mode, constant_border_value);
_reference = compute_reference(shape, data_type, conv, scale, border_mode, constant_border_value);
}
@@ -80,6 +89,33 @@ protected:
}
}
+ void
+ create_separable_conv(int16_t *conv)
+ {
+ std::mt19937 gen(library->seed());
+ // Set it between -128 and 127 to ensure the matrix does not overflow
+ std::uniform_int_distribution<int16_t> distribution_int16(-128, 127);
+
+ int16_t conv_row[_width];
+ int16_t conv_col[_height];
+
+ conv_row[0] = conv_col[0] = 1;
+ for(unsigned int i = 1; i < _width; ++i)
+ {
+ conv_row[i] = distribution_int16(gen);
+ conv_col[i] = distribution_int16(gen);
+ }
+
+ // Multiply two matrices
+ for(unsigned int i = 0; i < _width; ++i)
+ {
+ for(unsigned int j = 0; j < _height; ++j)
+ {
+ conv[i * _width + j] = conv_col[i] * conv_row[j];
+ }
+ }
+ }
+
template <typename U>
void fill(U &&tensor, int i)
{
@@ -152,6 +188,48 @@ protected:
};
template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
+class ConvolutionSeparableValidationFixture : public ConvolutionValidationFixture<TensorType, AccessorType, FunctionType, T>
+{
+public:
+ template <typename...>
+ void setup(TensorShape shape, DataType data_type, BorderMode border_mode, const unsigned int width)
+ {
+ ConvolutionValidationFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, data_type, border_mode, width, width, true);
+ }
+
+protected:
+ TensorType compute_target(const TensorShape &shape, DataType data_type, const int16_t *conv, uint32_t scale, BorderMode border_mode, uint8_t constant_border_value)
+ {
+ // Create tensors
+ TensorType src = create_tensor<TensorType>(shape, data_type);
+ TensorType dst = create_tensor<TensorType>(shape, data_type);
+
+ // Create and configure function
+ FunctionType convolution;
+ convolution.configure(&src, &dst, conv, scale, border_mode, constant_border_value);
+
+ ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
+ ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
+
+ // Allocate tensors
+ src.allocator()->allocate();
+ dst.allocator()->allocate();
+
+ ARM_COMPUTE_EXPECT(!src.info()->is_resizable(), framework::LogLevel::ERRORS);
+ ARM_COMPUTE_EXPECT(!dst.info()->is_resizable(), framework::LogLevel::ERRORS);
+
+ // Fill tensors
+ this->fill(AccessorType(src), 0);
+ this->fill(AccessorType(dst), 1);
+
+ // Compute function
+ convolution.run();
+
+ return dst;
+ }
+};
+
+template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
class ConvolutionRectangleValidationFixture : public ConvolutionValidationFixture<TensorType, AccessorType, FunctionType, T>
{
public: