aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/UNIT
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2018-08-01 12:11:15 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:54 +0000
commitfb0b2804057ebcd01a7fdb1b42f86726602cc646 (patch)
tree78c1bf35aa1247dbb54482268d270f5efec0dec6 /tests/validation/UNIT
parent8bc745dfd133f46e68edad511e2933a590602a24 (diff)
downloadComputeLibrary-fb0b2804057ebcd01a7fdb1b42f86726602cc646.tar.gz
COMPMID-1438: MobilenetV1 regression.
Alters the ending conditions for y dimension to use the actual end offset as a bound and not the actual y window as this could be the whole execution window and can lead to overlapped calculations across threads. Change-Id: Ic6642bbaa8e85d4a4034a44234d6cb3347a2f4ff Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/142229 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'tests/validation/UNIT')
-rw-r--r--tests/validation/UNIT/WindowIterator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/validation/UNIT/WindowIterator.cpp b/tests/validation/UNIT/WindowIterator.cpp
index 0c1ab12fe7..402cab4990 100644
--- a/tests/validation/UNIT/WindowIterator.cpp
+++ b/tests/validation/UNIT/WindowIterator.cpp
@@ -96,7 +96,7 @@ DATA_TEST_CASE(WholeWindow, framework::DatasetMode::ALL, zip(framework::dataset:
}
DATA_TEST_CASE(PartialWindow2D, framework::DatasetMode::ALL, zip(zip(zip(combine(framework::dataset::make("Window",
- create_window(Window::Dimension(4, 20, 4), Window::Dimension(3, 18, 5), Window::Dimension(1, 2, 1))),
+ create_window(Window::Dimension(4, 20, 4), Window::Dimension(3, 32, 5), Window::Dimension(1, 2, 1))),
framework::dataset::make("Start", { 0, 1, 3, 2, 4 })),
framework::dataset::make("End", { 0, 2, 5, 8, 7 })),
framework::dataset::make("RowSize",