blob: 40f7f2b7cdfcd0f929f660f8e2b790f126d5511d [file] [log] [blame]
Michalis Spyroue7e96e02018-04-13 13:44:10 +01001/*
Georgios Pinitas7cd26d42019-01-09 18:35:17 +00002 * Copyright (c) 2017-2019 ARM Limited.
Michalis Spyroue7e96e02018-04-13 13:44:10 +01003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24#pragma once
25
26#include "arm_gemm.hpp"
27
Anthony Barbier5f707732018-07-03 16:22:02 +010028namespace arm_gemm {
David Mansellce8f6052018-05-17 18:51:26 +010029
30/* "Batched GEMV" (where M=1 and nbatches>1) can be executed much more
31 * efficiently as a GEMM (with M'=nbatches and nbatches'=1). This wrapper
32 * implements this. */
Anthony Barbier5f707732018-07-03 16:22:02 +010033template<typename To, typename Tr>
34class GemvBatched : public GemmCommon<To, Tr> {
Michalis Spyroue7e96e02018-04-13 13:44:10 +010035private:
36 UniqueGemmCommon<To, Tr> _subgemm = nullptr;
37
38public:
David Manselle39334c2018-07-06 17:53:35 +010039 GemvBatched(const GemmArgs<Tr> &args) {
Michalis Spyroue7e96e02018-04-13 13:44:10 +010040 /* Just create a subgemm with batches->M */
David Manselle39334c2018-07-06 17:53:35 +010041 GemmArgs<Tr> newargs = args;
42 newargs._Msize = args._nbatches;
43 newargs._nbatches = 1;
Georgios Pinitas7cd26d42019-01-09 18:35:17 +000044 _subgemm = gemm<To,Tr>(newargs);
Michalis Spyroue7e96e02018-04-13 13:44:10 +010045 }
46
47 void set_arrays(const To *A, const int lda, const int A_batch_stride, const int A_multi_stride,
48 const To *B, const int ldb, const int B_multi_stride,
Anthony Barbier5f707732018-07-03 16:22:02 +010049 Tr *C, const int ldc, const int C_batch_stride, const int C_multi_stride) override {
Michalis Spyroue7e96e02018-04-13 13:44:10 +010050 /* A and C's batch stride becomes their new row stride. New batch stride is 0 as nbatches for subgemm is always 1. */
51 _subgemm->set_arrays(A, A_batch_stride, 0, A_multi_stride,
52 B, ldb, B_multi_stride,
53 C, C_batch_stride, 0, C_multi_stride);
54 }
55
Anthony Barbier5f707732018-07-03 16:22:02 +010056 unsigned int get_window_size() const override {
Michalis Spyroue7e96e02018-04-13 13:44:10 +010057 return _subgemm->get_window_size();
58 }
59
Anthony Barbier5f707732018-07-03 16:22:02 +010060 void set_nthreads(int nthreads) override {
Michalis Spyroue7e96e02018-04-13 13:44:10 +010061 _subgemm->set_nthreads(nthreads);
62 }
63
Anthony Barbier5f707732018-07-03 16:22:02 +010064 void execute(unsigned int start, unsigned int end, int threadid) override {
Michalis Spyroue7e96e02018-04-13 13:44:10 +010065 _subgemm->execute(start, end, threadid);
66 }
67
Anthony Barbier5f707732018-07-03 16:22:02 +010068 size_t get_working_size() const override {
Michalis Spyroue7e96e02018-04-13 13:44:10 +010069 return _subgemm->get_working_size();
70 }
71
Anthony Barbier5f707732018-07-03 16:22:02 +010072 void set_working_space(void *space) override {
Michalis Spyroue7e96e02018-04-13 13:44:10 +010073 _subgemm->set_working_space(space);
74 }
75
Anthony Barbier5f707732018-07-03 16:22:02 +010076 bool B_is_pretransposed() const override {
Michalis Spyroue7e96e02018-04-13 13:44:10 +010077 return _subgemm->B_is_pretransposed();
78 }
79
Anthony Barbier5f707732018-07-03 16:22:02 +010080 bool B_pretranspose_required() const override {
Michalis Spyroue7e96e02018-04-13 13:44:10 +010081 return _subgemm->B_pretranspose_required();
82 }
83
Anthony Barbier5f707732018-07-03 16:22:02 +010084 size_t get_B_pretransposed_array_size() const override {
Michalis Spyroue7e96e02018-04-13 13:44:10 +010085 return _subgemm->get_B_pretransposed_array_size();
86 }
87
Anthony Barbier5f707732018-07-03 16:22:02 +010088 void pretranspose_B_array(void *buffer, const To *B, const int ldb, const int B_multi_stride) override {
Michalis Spyroue7e96e02018-04-13 13:44:10 +010089 _subgemm->pretranspose_B_array(buffer, B, ldb, B_multi_stride);
90 }
91
Anthony Barbier5f707732018-07-03 16:22:02 +010092 void set_pretransposed_B_data(void *buffer) override {
Michalis Spyroue7e96e02018-04-13 13:44:10 +010093 _subgemm->set_pretransposed_B_data(buffer);
94 }
95};
96
97} // namespace arm_gemm