aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/fixtures
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validation/fixtures')
-rw-r--r--tests/validation/fixtures/WarpAffineFixture.h4
-rw-r--r--tests/validation/fixtures/WarpPerspectiveFixture.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/validation/fixtures/WarpAffineFixture.h b/tests/validation/fixtures/WarpAffineFixture.h
index 3b106e15d6..fef1f6b626 100644
--- a/tests/validation/fixtures/WarpAffineFixture.h
+++ b/tests/validation/fixtures/WarpAffineFixture.h
@@ -56,7 +56,7 @@ public:
// Create the matrix
std::array<float, 6> matrix{ {} };
- fill_warp_matrix<6>(matrix, 3, 2);
+ fill_warp_matrix<6>(matrix);
_target = compute_target(shape, data_type, matrix.data(), policy, border_mode, constant_border_value);
_reference = compute_reference(shape, data_type, matrix.data(), policy, border_mode, constant_border_value);
@@ -118,4 +118,4 @@ protected:
} // namespace validation
} // namespace test
} // namespace arm_compute
-#endif /* ARM_COMPUTE_TEST_WARP_AFFINE_FIXTURE */ \ No newline at end of file
+#endif /* ARM_COMPUTE_TEST_WARP_AFFINE_FIXTURE */
diff --git a/tests/validation/fixtures/WarpPerspectiveFixture.h b/tests/validation/fixtures/WarpPerspectiveFixture.h
index a99ee4e55b..c77efbdc0d 100644
--- a/tests/validation/fixtures/WarpPerspectiveFixture.h
+++ b/tests/validation/fixtures/WarpPerspectiveFixture.h
@@ -62,7 +62,7 @@ public:
// Create the matrix
std::array<float, 9> matrix = { { 0 } };
- fill_warp_matrix<9>(matrix, 3, 3);
+ fill_warp_matrix<9>(matrix);
_target = compute_target(input_shape, vmask_shape, matrix.data(), policy, border_mode, constant_border_value, data_type);
_reference = compute_reference(input_shape, vmask_shape, matrix.data(), policy, border_mode, constant_border_value, data_type);