blob: 5734c93021921c75e978dea347249a5d4dff3837 [file] [log] [blame]
Gian Marco Iodice926afe12019-03-19 11:44:13 +00001/*
Manuel Bottinic8e6e2c2020-07-02 11:27:27 +01002 * Copyright (c) 2019-2020 Arm Limited.
Gian Marco Iodice926afe12019-03-19 11:44:13 +00003 *
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#include "arm_compute/core/CL/gemm/CLGEMMHelpers.h"
25
Gian Marco Iodiceed5fe692020-07-09 08:41:10 +010026#include "arm_compute/core/CL/CLHelpers.h"
Manuel Bottinic8e6e2c2020-07-02 11:27:27 +010027#include "arm_compute/core/CL/CLKernelLibrary.h"
Gian Marco Iodiceed5fe692020-07-09 08:41:10 +010028#include "arm_compute/core/CL/OpenCL.h"
29#include "arm_compute/core/ITensorInfo.h"
Manuel Bottinic8e6e2c2020-07-02 11:27:27 +010030
Gian Marco Iodice926afe12019-03-19 11:44:13 +000031#include <utility>
32
33namespace arm_compute
34{
35namespace cl_gemm
36{
37std::pair<GEMMLHSMatrixInfo, GEMMRHSMatrixInfo> configure_lhs_rhs_info(unsigned int m, unsigned int n, unsigned int m0, unsigned int n0, unsigned int k0, unsigned int v0, unsigned int h0,
Gian Marco Iodiceed5fe692020-07-09 08:41:10 +010038 bool lhs_interleave, bool rhs_interleave, bool lhs_transpose, bool rhs_transpose, bool export_to_cl_image)
Gian Marco Iodice926afe12019-03-19 11:44:13 +000039{
Gian Marco Iodiceed5fe692020-07-09 08:41:10 +010040 v0 = ((m / (m0 * v0)) == 0) ? 1 : v0;
41 h0 = ((n / (n0 * h0)) == 0) ? 1 : h0;
Gian Marco Iodice926afe12019-03-19 11:44:13 +000042
Gian Marco Iodiceed5fe692020-07-09 08:41:10 +010043 const GEMMLHSMatrixInfo lhs_info(m0, k0, v0, lhs_transpose, lhs_interleave);
44 const GEMMRHSMatrixInfo rhs_info(n0, k0, h0, rhs_transpose, rhs_interleave, export_to_cl_image);
Gian Marco Iodice926afe12019-03-19 11:44:13 +000045
46 return std::make_pair(lhs_info, rhs_info);
47}
Manuel Bottinic8e6e2c2020-07-02 11:27:27 +010048
49void update_padding_for_cl_image(ITensorInfo *tensor)
50{
51 constexpr unsigned int num_floats_per_pixel = 4;
52
53 const unsigned int stride_y_in_elements = tensor->strides_in_bytes()[1] / tensor->element_size();
54 const unsigned int pixel_aligment = get_cl_image_pitch_alignment(CLKernelLibrary::get().get_device());
55 const unsigned int row_pitch_alignment = pixel_aligment * num_floats_per_pixel;
56 const unsigned int round_up_width = ((stride_y_in_elements + row_pitch_alignment - 1) / row_pitch_alignment) * row_pitch_alignment;
57 const unsigned int padding = round_up_width - stride_y_in_elements;
58
59 tensor->extend_padding(PaddingSize(0, padding, 0, 0));
60}
Gian Marco Iodiceed5fe692020-07-09 08:41:10 +010061
62Status validate_image2d_support_on_rhs(const ITensorInfo &tensor_reshaped_info, const GEMMRHSMatrixInfo &rhs_info)
63{
64 if(rhs_info.export_to_cl_image)
65 {
66 ARM_COMPUTE_RETURN_ERROR_ON_MSG((rhs_info.n0 == 2) || (rhs_info.n0 == 3), "Export to cl_image only supported with n0 = 4, 8 or 16");
67 ARM_COMPUTE_RETURN_ERROR_ON_MSG((rhs_info.k0 == 2) || (rhs_info.k0 == 3), "Export to cl_image only supported with k0 = 4, 8 or 16");
68 ARM_COMPUTE_RETURN_ERROR_ON_MSG(tensor_reshaped_info.data_type() != DataType::F32, "Export to cl_image only supported with F32 data type");
69 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!image2d_from_buffer_supported(CLKernelLibrary::get().get_device()), "The extension cl_khr_image2d_from_buffer is not supported on the target platform");
70 ARM_COMPUTE_RETURN_ERROR_ON_MSG(get_cl_image_pitch_alignment(CLKernelLibrary::get().get_device()) == 0, "Impossible to retrieve the cl_image pitch alignment");
71
72 // Check the width and height of the output tensor.
73 // Since we cannot create a 3d image from a buffer, the third dimension is collapsed on the second dimension
74 const size_t max_image_w = CLKernelLibrary::get().get_device().getInfo<CL_DEVICE_IMAGE2D_MAX_WIDTH>();
75 const size_t max_image_h = CLKernelLibrary::get().get_device().getInfo<CL_DEVICE_IMAGE2D_MAX_HEIGHT>();
76
77 ARM_COMPUTE_RETURN_ERROR_ON_MSG(tensor_reshaped_info.tensor_shape()[0] > max_image_w * 4, "Not supported width for cl_image");
78 ARM_COMPUTE_RETURN_ERROR_ON_MSG(tensor_reshaped_info.tensor_shape()[1] * tensor_reshaped_info.tensor_shape()[2] > max_image_h, "Not supported height for cl_image");
79 }
80
81 return Status{};
82}
Gian Marco Iodice926afe12019-03-19 11:44:13 +000083} // namespace cl_gemm
Gian Marco Iodiceed5fe692020-07-09 08:41:10 +010084} // namespace arm_compute