blob: ad171a7f9a0adb4ab2592187918fd0d5b8a954af [file] [log] [blame]
Pablo Telloeb82fd22018-02-23 13:43:50 +00001/*
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#ifdef __aarch64__
25
26#include "arm_gemm.hpp"
27#include "gemm_common.hpp"
David Manselle39334c2018-07-06 17:53:35 +010028#include "gemm_implementation.hpp"
Pablo Telloeb82fd22018-02-23 13:43:50 +000029#include "gemm_interleaved.hpp"
30
31#include "kernels/a64_gemm_s16_12x8.hpp"
32
Anthony Barbier5f707732018-07-03 16:22:02 +010033namespace arm_gemm {
34
David Manselle39334c2018-07-06 17:53:35 +010035class GemmImpl_gemm_s16_interleaved : public GemmImplementation<int16_t, int32_t> {
36public:
37 UniqueGemmCommon<int16_t, int32_t> instantiate(const GemmArgs<int32_t> &args) override {
38 return UniqueGemmCommon<int16_t, int32_t>(new GemmInterleaved<gemm_s16_12x8, int16_t, int32_t>(args));
39 }
40
41 GemmImpl_gemm_s16_interleaved() : GemmImplementation<int16_t, int32_t>(GemmMethod::GEMM_INTERLEAVED) { }
42};
43
Anthony Barbier92d20812018-07-13 11:35:30 +010044static GemmImpl_gemm_s16_interleaved gemm_s16_interleaved_impl{};
45
David Manselle39334c2018-07-06 17:53:35 +010046static std::vector<GemmImplementation<int16_t, int32_t> *> gemm_s16_methods = {
Anthony Barbier92d20812018-07-13 11:35:30 +010047 &gemm_s16_interleaved_impl
David Manselle39334c2018-07-06 17:53:35 +010048};
49
Anthony Barbier5f707732018-07-03 16:22:02 +010050template<>
David Manselle39334c2018-07-06 17:53:35 +010051std::vector<GemmImplementation<int16_t, int32_t> *> &gemm_implementation_list<int16_t, int32_t>() {
52 return gemm_s16_methods;
Pablo Telloeb82fd22018-02-23 13:43:50 +000053}
54
David Manselle39334c2018-07-06 17:53:35 +010055/* Explicitly instantiate the external functions for these types. */
56template UniqueGemmCommon<int16_t, int32_t> gemm<int16_t, int32_t>(GemmArgs<int32_t> &args, GemmConfig *cfg);
57template GemmMethod get_gemm_method<int16_t, int32_t>(GemmArgs<int32_t> &args);
58template bool method_is_compatible<int16_t, int32_t>(GemmMethod method, GemmArgs<int32_t> &args);
59
Pablo Telloeb82fd22018-02-23 13:43:50 +000060} // namespace arm_gemm
61
Georgios Pinitas421405b2018-10-26 19:05:32 +010062#endif // __aarch64__