aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2019-11-05 13:35:47 +0000
committerGeorgios Pinitas <georgios.pinitas@arm.com>2019-11-11 12:33:13 +0000
commit77d42528b796f3b8f5033785d3bbb8d9cb3fc637 (patch)
tree9e8055e63f8475c5dde7d03768307e3eb7580a8a /tests
parent9aaf09ec557dcce63cd1b5de173ce8947108327d (diff)
downloadComputeLibrary-77d42528b796f3b8f5033785d3bbb8d9cb3fc637.tar.gz
COMPMID-2853: VGG16 regression for fp32
* Caps dynamic scheduling granule to a max number Change-Id: I35a9239bc9984dbc1b416c40c4c1b4ac7f5808bd Signed-off-by: Georgios Pinitas <georgios.pinitas@arm.com> Reviewed-on: https://review.mlplatform.org/c/2223 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/framework/instruments/SchedulerTimer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/framework/instruments/SchedulerTimer.cpp b/tests/framework/instruments/SchedulerTimer.cpp
index 98c9b878d9..9e8bba28e8 100644
--- a/tests/framework/instruments/SchedulerTimer.cpp
+++ b/tests/framework/instruments/SchedulerTimer.cpp
@@ -76,7 +76,7 @@ public:
void schedule(ICPPKernel *kernel, const Hints &hints) override
{
_timer.start();
- _real_scheduler.schedule(kernel, hints.split_dimension());
+ _real_scheduler.schedule(kernel, hints);
_timer.stop();
typename SchedulerClock<output_timestamps>::kernel_info info;