aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/IScheduler.cpp
diff options
context:
space:
mode:
authorVidhya Sudhan Loganathan <vidhyasudhan.loganathan@arm.com>2018-10-03 13:53:01 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:55:19 +0000
commitecd9d09c7c77005586250587ec8e1ddb6f224bde (patch)
tree5fa2eafc416bfa63fc73c1c1b104f861e37f0090 /src/runtime/IScheduler.cpp
parentd307f06591f674f1b1f53f96b31404e4da754b3b (diff)
downloadComputeLibrary-ecd9d09c7c77005586250587ec8e1ddb6f224bde.tar.gz
COMPMID-1618 : Mobilenet QASYMM8 does not use dot prod kernel when instrumentation timer is enabled
issue description: cpu info was neither initialised in scheduler timer interceptor nor was it retrieved from real scheduler. Change-Id: Ibe75b0704250d99682ed866deaf3ddf5fda22de5 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/151451 Reviewed-by: Pablo Tello <pablo.tello@arm.com> Tested-by: bsgcomp <bsgcomp@arm.com>
Diffstat (limited to 'src/runtime/IScheduler.cpp')
-rw-r--r--src/runtime/IScheduler.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/runtime/IScheduler.cpp b/src/runtime/IScheduler.cpp
index 5188dce4eb..b2edad0ca5 100644
--- a/src/runtime/IScheduler.cpp
+++ b/src/runtime/IScheduler.cpp
@@ -31,6 +31,7 @@ namespace arm_compute
IScheduler::IScheduler()
: _cpu_info()
{
+ get_cpu_configuration(_cpu_info);
// Work out the best possible number of execution threads
_num_threads_hint = get_threads_hint();
}