blob: bb09770efc0b341373403c173349e5dfe4acb79b [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
28namespace arm_gemm
29{
David Mansellce8f6052018-05-17 18:51:26 +010030
31/* "Batched GEMV" (where M=1 and nbatches>1) can be executed much more
32 * efficiently as a GEMM (with M'=nbatches and nbatches'=1). This wrapper
33 * implements this. */
Michalis Spyroue7e96e02018-04-13 13:44:10 +010034template <typename To, typename Tr>
David Mansellce8f6052018-05-17 18:51:26 +010035class GemvBatched : public GemmCommon<To, Tr>
Michalis Spyroue7e96e02018-04-13 13:44:10 +010036{
37private:
38 UniqueGemmCommon<To, Tr> _subgemm = nullptr;
39
40public:
David Mansellce8f6052018-05-17 18:51:26 +010041 GemvBatched(const CPUInfo &ci, const unsigned int M, const unsigned int N, const unsigned int K,
Michalis Spyroue7e96e02018-04-13 13:44:10 +010042 const unsigned int nbatches, const unsigned int nmulti, const bool trA, const bool trB,
43 const To alpha, const To beta, const int maxthreads, const bool pretransposed_hint)
44 {
45 /* Just create a subgemm with batches->M */
46 _subgemm = gemm<To, Tr>(ci, nbatches, N, K, 1, nmulti, trA, trB, alpha, beta, maxthreads, pretransposed_hint);
47 }
48
49 void set_arrays(const To *A, const int lda, const int A_batch_stride, const int A_multi_stride,
50 const To *B, const int ldb, const int B_multi_stride,
51 Tr *C, const int ldc, const int C_batch_stride, const int C_multi_stride) override
52 {
53 /* A and C's batch stride becomes their new row stride. New batch stride is 0 as nbatches for subgemm is always 1. */
54 _subgemm->set_arrays(A, A_batch_stride, 0, A_multi_stride,
55 B, ldb, B_multi_stride,
56 C, C_batch_stride, 0, C_multi_stride);
57 }
58
59 unsigned int get_window_size() const override
60 {
61 return _subgemm->get_window_size();
62 }
63
64 void set_nthreads(int nthreads) override
65 {
66 _subgemm->set_nthreads(nthreads);
67 }
68
69 void execute(unsigned int start, unsigned int end, int threadid) override
70 {
71 _subgemm->execute(start, end, threadid);
72 }
73
74 size_t get_working_size() const override
75 {
76 return _subgemm->get_working_size();
77 }
78
79 void set_working_space(void *space) override
80 {
81 _subgemm->set_working_space(space);
82 }
83
84 bool B_is_pretransposed() const override
85 {
86 return _subgemm->B_is_pretransposed();
87 }
88
89 bool B_pretranspose_required() const override
90 {
91 return _subgemm->B_pretranspose_required();
92 }
93
94 size_t get_B_pretransposed_array_size() const override
95 {
96 return _subgemm->get_B_pretransposed_array_size();
97 }
98
99 void pretranspose_B_array(void *buffer, const To *B, const int ldb, const int B_multi_stride) override
100 {
101 _subgemm->pretranspose_B_array(buffer, B, ldb, B_multi_stride);
102 }
103
104 void set_pretransposed_B_data(void *buffer) override
105 {
106 _subgemm->set_pretransposed_B_data(buffer);
107 }
108};
109
110} // namespace arm_gemm