blob: fa2c3affa3b769ae8f014160a736194c6848121e [file] [log] [blame]
Giorgio Arena93a690e2017-08-01 16:09:33 +01001/*
Georgios Pinitas72219332018-06-05 14:56:06 +01002 * Copyright (c) 2017-2018 ARM Limited.
Giorgio Arena93a690e2017-08-01 16:09:33 +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#include "arm_compute/runtime/CL/functions/CLDepthwiseSeparableConvolutionLayer.h"
25
26#include "arm_compute/core/CL/ICLTensor.h"
27#include "arm_compute/core/PixelValue.h"
28#include "arm_compute/runtime/CL/CLScheduler.h"
29#include "support/ToolchainSupport.h"
30
31using namespace arm_compute;
32
33CLDepthwiseSeparableConvolutionLayer::CLDepthwiseSeparableConvolutionLayer()
34 : _depthwise_conv(), _pointwise_conv()
35{
36}
37
Georgios Pinitas81a26ad2017-10-23 20:29:30 +010038void CLDepthwiseSeparableConvolutionLayer::configure(ICLTensor *input, const ICLTensor *depthwise_weights, const ICLTensor *depthwise_biases, ICLTensor *depthwise_out,
39 const ICLTensor *pointwise_weights, const ICLTensor *pointwise_biases, ICLTensor *output,
Giorgio Arena93a690e2017-08-01 16:09:33 +010040 const PadStrideInfo &depthwise_conv_info, const PadStrideInfo &pointwise_conv_info)
41{
Giorgio Arena82afedf2017-11-15 13:36:15 +000042 _depthwise_conv.configure(input, depthwise_weights, depthwise_biases, depthwise_out, depthwise_conv_info);
Georgios Pinitas81a26ad2017-10-23 20:29:30 +010043 _pointwise_conv.configure(depthwise_out, pointwise_weights, pointwise_biases, output, pointwise_conv_info);
Giorgio Arena93a690e2017-08-01 16:09:33 +010044}
45
46void CLDepthwiseSeparableConvolutionLayer::run()
47{
Georgios Pinitas72219332018-06-05 14:56:06 +010048 prepare();
49
Giorgio Arena93a690e2017-08-01 16:09:33 +010050 _depthwise_conv.run();
51 _pointwise_conv.run();
Georgios Pinitas72219332018-06-05 14:56:06 +010052}
53
54void CLDepthwiseSeparableConvolutionLayer::prepare()
55{
56 _depthwise_conv.prepare();
57 _pointwise_conv.prepare();
Giorgio Arena93a690e2017-08-01 16:09:33 +010058}