Compute Library
 23.05
NEDirectConvolutionLayer.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017-2021 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  */
25 
27 #include "arm_compute/core/Utils.h"
31 
32 namespace arm_compute
33 {
34 struct NEDirectConvolutionLayer::Impl
35 {
36  ITensor *src{ nullptr };
37  const ITensor *weights{ nullptr };
38  const ITensor *bias{ nullptr };
39  ITensor *dst{ nullptr };
40  std::unique_ptr<cpu::CpuDirectConv2d> op{ nullptr };
41 };
42 
43 NEDirectConvolutionLayer::NEDirectConvolutionLayer(std::shared_ptr<IMemoryManager> memory_manager)
44  : _memory_manager(std::move(memory_manager)), _impl(std::make_unique<Impl>())
45 {
46 }
48 
50 {
51  _impl->src = input;
52  _impl->weights = weights;
53  _impl->bias = bias;
54  _impl->dst = output;
55  _impl->op = std::make_unique<cpu::CpuDirectConv2d>(_memory_manager);
56  _impl->op->configure(input->info(), weights->info(), (bias != nullptr ? bias->info() : nullptr), output->info(), conv_info, act_info);
57 }
58 
61 {
62  return cpu::CpuDirectConv2d::validate(input, weights, bias, output, conv_info, act_info);
63 }
64 
66 {
68  pack.add_tensor(TensorType::ACL_SRC_0, _impl->src);
69  pack.add_tensor(TensorType::ACL_SRC_1, _impl->weights);
70  pack.add_tensor(TensorType::ACL_SRC_2, _impl->bias);
71  pack.add_tensor(TensorType::ACL_DST, _impl->dst);
72  _impl->op->run(pack);
73 }
74 } // namespace arm_compute
static Status validate(const ITensorInfo *src, const ITensorInfo *weights, const ITensorInfo *bias, const ITensorInfo *dst, const PadStrideInfo &conv_info, const ActivationLayerInfo &act_info=ActivationLayerInfo())
Static function to check if given info will lead to a valid configuration.
~NEDirectConvolutionLayer()
Default destructor.
void run() override
Run the kernels contained in the function.
Store the tensor&#39;s metadata.
Definition: ITensorInfo.h:43
Status class.
Definition: Error.h:52
Activation Layer Information class.
Definition: Types.h:1659
Interface for CPU tensor.
Definition: ITensor.h:36
SimpleTensor< float > src
Definition: DFT.cpp:155
Copyright (c) 2017-2023 Arm Limited.
NEDirectConvolutionLayer(std::shared_ptr< IMemoryManager > memory_manager=nullptr)
Constructor.
virtual ITensorInfo * info() const =0
Interface to be implemented by the child class to return the tensor&#39;s metadata.
Padding and stride information class.
Definition: Types.h:671
void configure(ITensor *input, const ITensor *weights, const ITensor *bias, ITensor *output, const PadStrideInfo &conv_info, const ActivationLayerInfo &act_info=ActivationLayerInfo())
Set the input, weights, biases and output tensors.
Tensor packing service.
Definition: ITensorPack.h:39
static Status validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *bias, const ITensorInfo *output, const PadStrideInfo &conv_info, const ActivationLayerInfo &act_info=ActivationLayerInfo())
Static function to check if given info will lead to a valid configuration of NEDirectConvolutionLayer...
void add_tensor(int id, ITensor *tensor)
Add tensor to the pack.
Definition: ITensorPack.cpp:39
const int32_t * bias