blob: 6fafd9c7f13fb80449f26e13c940333c5c84e757 [file] [log] [blame]
steniu0127b386c2017-07-18 17:37:43 +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 */
24#include "arm_compute/runtime/CL/functions/CLDirectConvolutionLayer.h"
25
26#include "arm_compute/core/CL/kernels/CLDirectConvolutionLayerKernel.h"
27#include "arm_compute/core/PixelValue.h"
28#include "arm_compute/core/Utils.h"
29#include "arm_compute/core/Validate.h"
30#include "arm_compute/runtime/CL/CLScheduler.h"
31
32using namespace arm_compute;
33
34CLDirectConvolutionLayer::CLDirectConvolutionLayer()
35 : _direct_conv_kernel(), _input_border_handler()
36{
37}
38
39void CLDirectConvolutionLayer::configure(ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, const PadStrideInfo &conv_info)
40{
Gian Marco Iodice1246b632017-08-16 18:38:32 +010041 // Set GPU target
42 _direct_conv_kernel.set_target(CLScheduler::get().target());
43
44 // Configure direct convolution
steniu0127b386c2017-07-18 17:37:43 +010045 _direct_conv_kernel.configure(input, weights, biases, output, conv_info);
46
Gian Marco Iodice1246b632017-08-16 18:38:32 +010047 // Configure border handler
steniu0127b386c2017-07-18 17:37:43 +010048 _input_border_handler.configure(input, _direct_conv_kernel.border_size(), BorderMode::CONSTANT, PixelValue(0));
49}
50
51void CLDirectConvolutionLayer::run()
52{
Gian Marco Iodice1246b632017-08-16 18:38:32 +010053 // Run border handler
steniu0127b386c2017-07-18 17:37:43 +010054 CLScheduler::get().enqueue(_input_border_handler, false);
Gian Marco Iodice1246b632017-08-16 18:38:32 +010055
56 // Run direct convolution
steniu0127b386c2017-07-18 17:37:43 +010057 CLScheduler::get().enqueue(_direct_conv_kernel);
58}