blob: 1b64591191b24916f523fd051170c778b1a5597b [file] [log] [blame]
Pablo Tellobf2fb952017-09-29 16:43:25 +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 Marcoc7f9b892017-11-30 14:31:13 +000024#ifndef ARM_COMPUTE_TEST_GEMMLOWPFIXTURE
25#define ARM_COMPUTE_TEST_GEMMLOWPFIXTURE
Pablo Tellobf2fb952017-09-29 16:43:25 +010026
27#include "arm_compute/core/TensorShape.h"
28#include "arm_compute/core/Types.h"
29#include "tests/Globals.h"
30#include "tests/Utils.h"
31#include "tests/framework/Fixture.h"
32
33namespace arm_compute
34{
35namespace test
36{
Pablo Tellobf2fb952017-09-29 16:43:25 +010037/** Fixture that can be used for NEON and CL */
38template <typename TensorType, typename Function, typename Accessor>
Gian Marcoc7f9b892017-11-30 14:31:13 +000039class GEMMLowpMatrixMultiplyCoreFixture : public framework::Fixture
Pablo Tellobf2fb952017-09-29 16:43:25 +010040{
41public:
42 template <typename...>
Gian Marcoc7f9b892017-11-30 14:31:13 +000043 void setup(TensorShape shape_a, TensorShape shape_b, TensorShape shape_c, TensorShape shape_dst, float alpha, float beta)
Pablo Tellobf2fb952017-09-29 16:43:25 +010044 {
Gian Marcoc7f9b892017-11-30 14:31:13 +000045 // TODO (COMPMID-717): The interface used for GEMMLowp is the same one used for GEMM in order to re-use the datasets
46 // However the interface for both GEMM and GEMMLowp should be reworked in order to accepts only the 3 dimensions M, N and K
47 ARM_COMPUTE_UNUSED(shape_c);
48 ARM_COMPUTE_UNUSED(alpha);
49 ARM_COMPUTE_UNUSED(beta);
50
51 // Note: The offsets for matrix A and matrix B are set to 0 in order to skip the computation for the offset contribution
52
Pablo Tellobf2fb952017-09-29 16:43:25 +010053 // Create tensors
Gian Marcoc7f9b892017-11-30 14:31:13 +000054 a = create_tensor<TensorType>(shape_a, DataType::QASYMM8, 1, 0, QuantizationInfo(1.0f / 255.0f, 0));
55 b = create_tensor<TensorType>(shape_b, DataType::QASYMM8, 1, 0, QuantizationInfo(1.0f / 255.0f, 0));
56 c = create_tensor<TensorType>(shape_dst, DataType::S32, 1, 0, QuantizationInfo(1.0f / 255.0f, 0));
Pablo Tellobf2fb952017-09-29 16:43:25 +010057
58 // Create and configure function
59 gemmlowp.configure(&a, &b, &c);
60
61 // Allocate tensors
62 a.allocator()->allocate();
63 b.allocator()->allocate();
64 c.allocator()->allocate();
65
66 // Fill tensors
67 library->fill_tensor_uniform(Accessor(a), 0);
68 library->fill_tensor_uniform(Accessor(b), 1);
Pablo Tellobf2fb952017-09-29 16:43:25 +010069 }
70 void run()
71 {
72 gemmlowp.run();
73 }
74
Joel Liang1c5ffd62017-12-28 10:09:51 +080075 void sync()
76 {
77 sync_if_necessary<TensorType>();
78 sync_tensor_if_necessary<TensorType>(c);
79 }
80
Pablo Tellobf2fb952017-09-29 16:43:25 +010081 void teardown()
82 {
83 a.allocator()->free();
84 b.allocator()->free();
85 c.allocator()->free();
86 }
87
88private:
89 TensorType a{};
90 TensorType b{};
91 TensorType c{};
92 Function gemmlowp{};
93};
94
95} // namespace test
96} // namespace arm_compute
Gian Marcoc7f9b892017-11-30 14:31:13 +000097#endif /* ARM_COMPUTE_TEST_GEMMLOWPFIXTURE */