blob: 8670a22a66cc771ec5f9f800b19277919e9e985e [file] [log] [blame]
Pablo Tello299025a2017-09-29 11:30:12 +01001/*
2 * Copyright (c) 2017 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 */
Gian Marcoe75a02b2017-11-08 12:24:09 +000024#include "GEMMLowp.h"
Pablo Tello299025a2017-09-29 11:30:12 +010025
26#include "arm_compute/core/Types.h"
Pablo Tello299025a2017-09-29 11:30:12 +010027
28namespace arm_compute
29{
30namespace test
31{
32namespace validation
33{
34namespace reference
35{
Pablo Tello299025a2017-09-29 11:30:12 +010036template <typename T>
Gian Marcoe75a02b2017-11-08 12:24:09 +000037SimpleTensor<int32_t> gemmlowp_matrix_multiply_core(const SimpleTensor<T> &a, const SimpleTensor<T> &b, int32_t a_offset, int32_t b_offset)
Pablo Tello299025a2017-09-29 11:30:12 +010038{
Gian Marcoe75a02b2017-11-08 12:24:09 +000039 TensorShape shape(b.shape()[0], a.shape()[1]);
40
41 SimpleTensor<int32_t> c(shape, DataType::S32);
42
43 const int K = a.shape().x();
44 const int b_width = b.shape().x();
45 const int rows = c.shape().y(); //M
46 const int cols = c.shape().x(); //N
47
Pablo Tello299025a2017-09-29 11:30:12 +010048 std::vector<int32_t> acc;
49 acc.resize(cols);
Gian Marcoe75a02b2017-11-08 12:24:09 +000050
Pablo Tello299025a2017-09-29 11:30:12 +010051 for(int i = 0; i < rows; ++i)
52 {
53 for(int j = 0; j < cols; ++j)
54 {
55 acc[j] = 0;
56 }
57 for(int k = 0; k < K; ++k)
58 {
59 const int32_t tmp_a = a_offset + static_cast<int32_t>(a[k + i * K]);
60 for(int j = 0; j < b_width; ++j)
61 {
62 const int32_t tmp_b = b_offset + static_cast<int32_t>(b[j + k * b_width]);
63 const int32_t mult_as_int = tmp_a * tmp_b;
64 acc[j] += mult_as_int;
65 }
66 }
67 for(int j = 0; j < cols; ++j)
68 {
Gian Marcoe75a02b2017-11-08 12:24:09 +000069 c[j + i * cols] = acc[j];
Pablo Tello299025a2017-09-29 11:30:12 +010070 }
71 }
72
73 return c;
74}
75
Pablo Tello181e6512017-11-15 13:28:27 +000076// used to validate assembly kernels which don't know anything about offsets
77SimpleTensor<int32_t> gemmlowp(const SimpleTensor<int8_t> &a, const SimpleTensor<int8_t> &b)
78{
79 return gemmlowp_matrix_multiply_core(a, b, 0, 0);
80}
81
Gian Marcoe75a02b2017-11-08 12:24:09 +000082template <typename T>
83SimpleTensor<uint8_t> gemmlowp_quantize_down_int32_to_uint8_scale(const SimpleTensor<T> &in, int32_t result_offset, int32_t result_mult_int, int32_t result_shift)
84{
85 SimpleTensor<uint8_t> dst(in.shape(), DataType::QASYMM8);
86
87 for(int i = 0; i < in.num_elements(); ++i)
88 {
89 const int32_t result = ((in[i] + result_offset) * result_mult_int) >> result_shift;
90 dst[i] = static_cast<uint8_t>(std::max(0, std::min(255, result)));
91 }
92
93 return dst;
94}
95
96template SimpleTensor<int32_t> gemmlowp_matrix_multiply_core(const SimpleTensor<uint8_t> &a, const SimpleTensor<uint8_t> &b, int32_t a_offset, int32_t b_offset);
97template SimpleTensor<uint8_t> gemmlowp_quantize_down_int32_to_uint8_scale(const SimpleTensor<int32_t> &a, int32_t result_offset, int32_t result_mult_int, int32_t result_shift);
Pablo Tello299025a2017-09-29 11:30:12 +010098} // namespace reference
99} // namespace validation
100} // namespace test
101} // namespace arm_compute