blob: fa578854504b0b4756ac303120bd9f4ae45967a1 [file] [log] [blame]
Giorgio Arenacf3935f2017-10-26 17:14:13 +01001/*
Gian Marco85e6f512018-02-01 16:57:48 +00002 * Copyright (c) 2017-2018 ARM Limited.
Giorgio Arenacf3935f2017-10-26 17:14:13 +01003 *
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#ifndef ARM_COMPUTE_CL /* Needed by Utils.cpp to handle OpenCL exceptions properly */
25#error "This example needs to be built with -DARM_COMPUTE_CL"
26#endif /* ARM_COMPUTE_CL */
27
28#include "arm_compute/core/Types.h"
29#include "arm_compute/runtime/CL/CLFunctions.h"
30#include "arm_compute/runtime/CL/CLScheduler.h"
31#include "arm_compute/runtime/CL/CLTuner.h"
32#include "utils/Utils.h"
33
Gian Marco0bc5a252017-12-04 13:55:08 +000034#include <cstdlib>
35
Giorgio Arenacf3935f2017-10-26 17:14:13 +010036using namespace arm_compute;
37using namespace utils;
38
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000039class CLSGEMMExample : public Example
Giorgio Arenacf3935f2017-10-26 17:14:13 +010040{
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000041public:
42 void do_setup(int argc, char **argv) override
Giorgio Arenacf3935f2017-10-26 17:14:13 +010043 {
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000044 NPYLoader npy0, npy1, npy2;
45 alpha = 1.0f;
46 beta = 0.0f;
Giorgio Arenacf3935f2017-10-26 17:14:13 +010047
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000048 CLScheduler::get().default_init(&tuner);
Giorgio Arenacf3935f2017-10-26 17:14:13 +010049
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000050 std::ifstream stream;
51 if(argc > 1)
Giorgio Arenacf3935f2017-10-26 17:14:13 +010052 {
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000053 stream.open(argv[1], std::fstream::in);
54 }
Giorgio Arenacf3935f2017-10-26 17:14:13 +010055
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000056 if(argc < 3 || (argc < 4 && stream.bad()))
57 {
58 // Print help
59 std::cout << "Usage: 1) ./build/cl_sgemm input_matrix_1.npy input_matrix_2.npy [input_matrix_3.npy] [alpha = 1] [beta = 0]\n";
60 std::cout << " 2) ./build/cl_sgemm M N K [alpha = 1.0f] [beta = 0.0f]\n\n";
61 std::cout << "Too few or no input_matrices provided. Using M=7, N=3, K=5, alpha=1.0f and beta=0.0f\n\n";
62
63 src0.allocator()->init(TensorInfo(TensorShape(5U, 7U), 1, DataType::F32));
64 src1.allocator()->init(TensorInfo(TensorShape(3U, 5U), 1, DataType::F32));
65 src2.allocator()->init(TensorInfo(TensorShape(3U, 7U), 1, DataType::F32));
66 }
67 else
68 {
69 if(stream.good()) /* case file1.npy file2.npy [file3.npy] [alpha = 1.0f] [beta = 0.0f] */
Giorgio Arenacf3935f2017-10-26 17:14:13 +010070 {
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000071 npy0.open(argv[1]);
72 npy0.init_tensor(src0, DataType::F32);
73 npy1.open(argv[2]);
74 npy1.init_tensor(src1, DataType::F32);
75
76 if(argc > 3)
Giorgio Arenacf3935f2017-10-26 17:14:13 +010077 {
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000078 stream.close();
79 stream.clear();
80 stream.open(argv[3], std::fstream::in);
81 if(stream.good()) /* case with third file */
Giorgio Arenacf3935f2017-10-26 17:14:13 +010082 {
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000083 npy2.open(argv[3]);
84 npy2.init_tensor(src2, DataType::F32);
Giorgio Arenacf3935f2017-10-26 17:14:13 +010085
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000086 if(argc > 4)
Giorgio Arenacf3935f2017-10-26 17:14:13 +010087 {
Gian Marco0bc5a252017-12-04 13:55:08 +000088 // Convert string to float
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000089 alpha = strtof(argv[4], nullptr);
90
91 if(argc > 5)
92 {
93 // Convert string to float
94 beta = strtof(argv[5], nullptr);
95 }
96 }
97 }
98 else /* case without third file */
99 {
100 alpha = strtof(argv[3], nullptr);
101
102 if(argc > 4)
103 {
104 beta = strtof(argv[4], nullptr);
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100105 }
106 }
107 }
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000108 }
109 else /* case M N K [alpha = 1.0f] [beta = 0.0f] */
110 {
111 size_t M = strtol(argv[1], nullptr, 10);
112 size_t N = strtol(argv[2], nullptr, 10);
113 size_t K = strtol(argv[3], nullptr, 10);
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100114
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000115 src0.allocator()->init(TensorInfo(TensorShape(K, M), 1, DataType::F32));
116 src1.allocator()->init(TensorInfo(TensorShape(N, K), 1, DataType::F32));
117 src2.allocator()->init(TensorInfo(TensorShape(N, M), 1, DataType::F32));
118
119 if(argc > 4)
120 {
121 alpha = strtof(argv[4], nullptr);
122
123 if(argc > 5)
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100124 {
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000125 beta = strtof(argv[5], nullptr);
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100126 }
127 }
128 }
129 }
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000130
131 init_sgemm_output(dst, src0, src1, DataType::F32);
132
133 // Configure function
134 sgemm.configure(&src0, &src1, (src2.info()->total_size() > 0) ? &src2 : nullptr, &dst, alpha, beta);
135
136 // Allocate all the images
137 src0.allocator()->allocate();
138 src1.allocator()->allocate();
139 dst.allocator()->allocate();
140
141 // Fill the input images with either the data provided or random data
142 if(npy0.is_open())
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100143 {
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000144 npy0.fill_tensor(src0);
145 npy1.fill_tensor(src1);
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100146
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000147 output_filename = "sgemm_out.npy";
148 is_fortran = npy0.is_fortran();
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100149
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000150 if(npy2.is_open())
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100151 {
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000152 src2.allocator()->allocate();
153 npy2.fill_tensor(src2);
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100154 }
155 }
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000156 else
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100157 {
158 src2.allocator()->allocate();
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000159
160 fill_random_tensor(src0, -1.f, 1.f);
161 fill_random_tensor(src1, -1.f, 1.f);
162 fill_random_tensor(src2, -1.f, 1.f);
163 }
164
165 // Dummy run for CLTuner
166 sgemm.run();
167 }
168 void do_run() override
169 {
170 // Execute the function
171 sgemm.run();
172
173 // Make sure all the OpenCL jobs are done executing:
174 CLScheduler::get().sync();
175 }
176 void do_teardown() override
177 {
Gian Marco85e6f512018-02-01 16:57:48 +0000178 if(!output_filename.empty()) /* Save to .npy file */
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000179 {
180 save_to_npy(dst, output_filename, is_fortran);
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100181 }
182 }
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100183
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000184private:
185 CLTensor src0{}, src1{}, src2{}, dst{};
186 CLGEMM sgemm{};
187 CLTuner tuner{};
188 float alpha{}, beta{};
189 bool is_fortran{};
190 std::string output_filename{};
191};
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100192
193/** Main program for sgemm test
194 *
195 * @param[in] argc Number of arguments
196 * @param[in] argv Arguments ( [optional] Matrix A, [optional] Matrix B, [optional] Matrix C, [optional] alpha, [optional] beta )
197 */
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000198int main(int argc, char **argv)
Giorgio Arenacf3935f2017-10-26 17:14:13 +0100199{
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000200 return utils::run_example<CLSGEMMExample>(argc, argv);
Gian Marcoae2af742018-02-15 12:35:44 +0000201}