aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/CL
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validation/CL')
-rw-r--r--tests/validation/CL/WarpAffine.cpp2
-rw-r--r--tests/validation/CL/WarpPerspective.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/validation/CL/WarpAffine.cpp b/tests/validation/CL/WarpAffine.cpp
index 9177fcb5a7..9db2ccaacc 100644
--- a/tests/validation/CL/WarpAffine.cpp
+++ b/tests/validation/CL/WarpAffine.cpp
@@ -66,7 +66,7 @@ DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(combine(combi
// Create the matrix
std::array<float, 6> matrix{ {} };
- fill_warp_matrix<6>(matrix, 3, 2);
+ fill_warp_matrix<6>(matrix);
// Create tensors
CLTensor src = create_tensor<CLTensor>(shape, data_type);
diff --git a/tests/validation/CL/WarpPerspective.cpp b/tests/validation/CL/WarpPerspective.cpp
index 011fe905da..2edf9119d6 100644
--- a/tests/validation/CL/WarpPerspective.cpp
+++ b/tests/validation/CL/WarpPerspective.cpp
@@ -67,7 +67,7 @@ DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(combine(combi
// Create the matrix
std::array<float, 9> matrix = { { 0 } };
- fill_warp_matrix<9>(matrix, 3, 3);
+ fill_warp_matrix<9>(matrix);
// Create tensors
CLTensor src = create_tensor<CLTensor>(shape, data_type);