blob: d91b44b9a8bfbef008a8459dd8f383bd5e6a83d3 [file] [log] [blame]
Michalis Spyroue7e96e02018-04-13 13:44:10 +01001/*
2 * Copyright (c) 2017-2018 ARM Limited.
3 *
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 Mansellce8f6052018-05-17 18:51:26 +010039 GemvBatched(const CPUInfo &ci, const unsigned int M, const unsigned int N, const unsigned int K,
Michalis Spyroue7e96e02018-04-13 13:44:10 +010040 const unsigned int nbatches, const unsigned int nmulti, const bool trA, const bool trB,
Anthony Barbier5f707732018-07-03 16:22:02 +010041 const To alpha, const To beta, const int maxthreads, const bool pretransposed_hint) {
Michalis Spyroue7e96e02018-04-13 13:44:10 +010042 /* Just create a subgemm with batches->M */
Anthony Barbier5f707732018-07-03 16:22:02 +010043 _subgemm = gemm<To,Tr>(ci, nbatches, N, K, 1, nmulti, trA, trB, alpha, beta, maxthreads, pretransposed_hint);
Michalis Spyroue7e96e02018-04-13 13:44:10 +010044 }
45
46 void set_arrays(const To *A, const int lda, const int A_batch_stride, const int A_multi_stride,
47 const To *B, const int ldb, const int B_multi_stride,
Anthony Barbier5f707732018-07-03 16:22:02 +010048 Tr *C, const int ldc, const int C_batch_stride, const int C_multi_stride) override {
Michalis Spyroue7e96e02018-04-13 13:44:10 +010049 /* A and C's batch stride becomes their new row stride. New batch stride is 0 as nbatches for subgemm is always 1. */
50 _subgemm->set_arrays(A, A_batch_stride, 0, A_multi_stride,
51 B, ldb, B_multi_stride,
52 C, C_batch_stride, 0, C_multi_stride);
53 }
54
Anthony Barbier5f707732018-07-03 16:22:02 +010055 unsigned int get_window_size() const override {
Michalis Spyroue7e96e02018-04-13 13:44:10 +010056 return _subgemm->get_window_size();
57 }
58
Anthony Barbier5f707732018-07-03 16:22:02 +010059 void set_nthreads(int nthreads) override {
Michalis Spyroue7e96e02018-04-13 13:44:10 +010060 _subgemm->set_nthreads(nthreads);
61 }
62
Anthony Barbier5f707732018-07-03 16:22:02 +010063 void execute(unsigned int start, unsigned int end, int threadid) override {
Michalis Spyroue7e96e02018-04-13 13:44:10 +010064 _subgemm->execute(start, end, threadid);
65 }
66
Anthony Barbier5f707732018-07-03 16:22:02 +010067 size_t get_working_size() const override {
Michalis Spyroue7e96e02018-04-13 13:44:10 +010068 return _subgemm->get_working_size();
69 }
70
Anthony Barbier5f707732018-07-03 16:22:02 +010071 void set_working_space(void *space) override {
Michalis Spyroue7e96e02018-04-13 13:44:10 +010072 _subgemm->set_working_space(space);
73 }
74
Anthony Barbier5f707732018-07-03 16:22:02 +010075 bool B_is_pretransposed() const override {
Michalis Spyroue7e96e02018-04-13 13:44:10 +010076 return _subgemm->B_is_pretransposed();
77 }
78
Anthony Barbier5f707732018-07-03 16:22:02 +010079 bool B_pretranspose_required() const override {
Michalis Spyroue7e96e02018-04-13 13:44:10 +010080 return _subgemm->B_pretranspose_required();
81 }
82
Anthony Barbier5f707732018-07-03 16:22:02 +010083 size_t get_B_pretransposed_array_size() const override {
Michalis Spyroue7e96e02018-04-13 13:44:10 +010084 return _subgemm->get_B_pretransposed_array_size();
85 }
86
Anthony Barbier5f707732018-07-03 16:22:02 +010087 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 +010088 _subgemm->pretranspose_B_array(buffer, B, ldb, B_multi_stride);
89 }
90
Anthony Barbier5f707732018-07-03 16:22:02 +010091 void set_pretransposed_B_data(void *buffer) override {
Michalis Spyroue7e96e02018-04-13 13:44:10 +010092 _subgemm->set_pretransposed_B_data(buffer);
93 }
94};
95
96} // namespace arm_gemm