aboutsummaryrefslogtreecommitdiff
path: root/src/core/NEON/kernels/arm_gemm/gemm_interleaved.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/NEON/kernels/arm_gemm/gemm_interleaved.hpp')
-rw-r--r--src/core/NEON/kernels/arm_gemm/gemm_interleaved.hpp20
1 files changed, 15 insertions, 5 deletions
diff --git a/src/core/NEON/kernels/arm_gemm/gemm_interleaved.hpp b/src/core/NEON/kernels/arm_gemm/gemm_interleaved.hpp
index efd984561d..4897bedf47 100644
--- a/src/core/NEON/kernels/arm_gemm/gemm_interleaved.hpp
+++ b/src/core/NEON/kernels/arm_gemm/gemm_interleaved.hpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017-2019 ARM Limited.
+ * Copyright (c) 2017-2020 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -385,9 +385,9 @@ public:
// out work in units of out_height. Factor batches into the window, but
// not multi for now (as this would cause problems with the buffer
// manager).
- unsigned int get_window_size() const override {
- // _Mround is a multiple of out_height by definition.
- return (_Mround / strategy::out_height()) * _nbatches;
+ ndrange_t get_window_size() const override {
+ auto m_win_size = (_Mround / strategy::out_height()) * _nbatches;
+ return { m_win_size, 1u, 1u, 1u, 1u, 1u };
}
// set_nthreads: pass on to buffer manager to avoid it waiting for non-existant threads.
@@ -399,7 +399,7 @@ public:
}
// Execute
- void execute(unsigned int start, unsigned int end, int threadid) override {
+ void execute_1d(unsigned int start, unsigned int end, int threadid) {
if (_pretransposed) {
execute_internal<true>(start, end, threadid);
} else {
@@ -407,6 +407,16 @@ public:
}
}
+ //Execute
+ void execute(const ndcoord_t& work_range, const ndcoord_t& thread_locator, int threadid) override {
+ UNUSED(thread_locator);
+
+ const auto start = work_range.get_position(0);
+ const auto stop = work_range.get_position_end(0);
+
+ execute_1d(start, stop, threadid);
+ }
+
// Interface implementation - working space
size_t get_working_size() const override {
// In all cases, we need one A buffer plus a C buffer per thread.