aboutsummaryrefslogtreecommitdiff
path: root/tests/validation
diff options
context:
space:
mode:
authorGiorgio Arena <giorgio.arena@arm.com>2017-11-15 13:36:15 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commit82afedf2598c8fc5a428ecbd729dd8204b46fd43 (patch)
tree987bc328d2e936aff83b4bce47d167a25d648832 /tests/validation
parent02aabcca4904adba592fc9840085c87f336d11fb (diff)
downloadComputeLibrary-82afedf2598c8fc5a428ecbd729dd8204b46fd43.tar.gz
COMPMID-678 Align Convolution Interfaces
Change-Id: I257a09860dd82e7bb7a767edf96dcaf31b512855 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/95865 Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
Diffstat (limited to 'tests/validation')
-rw-r--r--tests/validation/NEON/DepthwiseConvolution.cpp2
-rw-r--r--tests/validation/fixtures/DepthwiseConvolutionFixture.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/validation/NEON/DepthwiseConvolution.cpp b/tests/validation/NEON/DepthwiseConvolution.cpp
index 9e2dd92d06..6e8aa46ed0 100644
--- a/tests/validation/NEON/DepthwiseConvolution.cpp
+++ b/tests/validation/NEON/DepthwiseConvolution.cpp
@@ -65,7 +65,7 @@ DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(framework::da
// Create and configure function
NEDepthwiseConvolution3x3 depthwise_layer;
- depthwise_layer.configure(&src, &dst, &weights, &bias, info);
+ depthwise_layer.configure(&src, &weights, &bias, &dst, info);
// Validate valid region
const ValidRegion input_valid_region = shape_to_valid_region(input_shape);
diff --git a/tests/validation/fixtures/DepthwiseConvolutionFixture.h b/tests/validation/fixtures/DepthwiseConvolutionFixture.h
index d883807537..f49e76c70c 100644
--- a/tests/validation/fixtures/DepthwiseConvolutionFixture.h
+++ b/tests/validation/fixtures/DepthwiseConvolutionFixture.h
@@ -80,7 +80,7 @@ protected:
// Create Depthwise Convolution configure function
FunctionType depthwise_convolution;
- depthwise_convolution.configure(&src, &dst, &weights, &biases, pad_stride_info);
+ depthwise_convolution.configure(&src, &weights, &biases, &dst, pad_stride_info);
// Allocate tensors
src.allocator()->allocate();