blob: 978c445927056b9c839bae708920031d6cffb3b4 [file] [log] [blame]
Michalis Spyrou542e92d2018-06-05 11:45:48 +01001/*
Michalis Spyrou1a569a32019-09-10 17:20:34 +01002 * Copyright (c) 2018-2019 ARM Limited.
Michalis Spyrou542e92d2018-06-05 11:45:48 +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_NERNNLAYER_H__
25#define __ARM_COMPUTE_NERNNLAYER_H__
26
27#include "arm_compute/core/NEON/kernels/NEActivationLayerKernel.h"
28#include "arm_compute/core/NEON/kernels/NEArithmeticAdditionKernel.h"
Georgios Pinitas3ada2b72018-08-23 15:54:36 +010029#include "arm_compute/core/NEON/kernels/NECopyKernel.h"
Michalis Spyrou542e92d2018-06-05 11:45:48 +010030
31#include "arm_compute/core/Types.h"
32#include "arm_compute/runtime/NEON/functions/NEFullyConnectedLayer.h"
33#include "arm_compute/runtime/NEON/functions/NEGEMM.h"
34
35namespace arm_compute
36{
37// Forward declarations
38class ITensor;
39
40/** Basic function to run @ref NERNNLayer */
41class NERNNLayer : public IFunction
42{
43public:
44 /** Default constructor */
45 NERNNLayer(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
46 /** Prevent instances of this class from being copied (As this class contains pointers) */
47 NERNNLayer(const NERNNLayer &) = delete;
48 /** Default move constructor */
49 NERNNLayer(NERNNLayer &&) = default;
50 /** Prevent instances of this class from being copied (As this class contains pointers) */
51 NERNNLayer &operator=(const NERNNLayer &) = delete;
52 /** Default move assignment operator */
53 NERNNLayer &operator=(NERNNLayer &&) = default;
54 /** Initialize the function
55 *
56 * @param[in] input Input is a 2-D tensor of shape [input_size, batch_size]. Data types supported: F16/F32
57 * @param[in] weights Weights tensor of shape [input_size, num_units] that multiplies the input. Data types supported: Same as @p input
58 * @param[in] recurrent_weights Weights tensor of shape [num_units, num_units] that multiplies the current 'state'. Data types supported: Same as @p input
59 * @param[in] bias Bias vector of shape [num_units]. Data types supported: Same as @p input
60 * @param[out] output Output tensor of shape [num_units, batch_size]. Data types supported: Same as @p input
61 * @param[in,out] hidden_state Output tensor of shape [num_units, batch_size]. Data types supported: Same as @p input
62 * @param[in] info Activation layer parameter.
63 */
64 void configure(const ITensor *input, const ITensor *weights, const ITensor *recurrent_weights, const ITensor *bias, ITensor *hidden_state, ITensor *output, ActivationLayerInfo &info);
65 /** Initialize the function
66 *
67 * @param[in] input Input is a 2-D tensor of shape [input_size, batch_size]. Data types supported: F16/F32
68 * @param[in] weights Weights tensor of shape [input_size, num_units] that multiplies the input. Data types supported: Same as @p input
69 * @param[in] recurrent_weights Weights tensor of shape [num_units, num_units] that multiplies the current 'state'. Data types supported: Same as @p input
70 * @param[in] bias Bias vector of shape [num_units]. Data types supported: Same as @p input
71 * @param[in] output Output tensor of shape [num_units, batch_size]. Data types supported: Same as @p input
72 * @param[in] hidden_state Output tensor of shape [num_units, batch_size]. Data types supported: Same as @p input
73 * @param[in] info Activation layer parameter.
74 *
75 * @return a status
76 */
77 static Status validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *recurrent_weights, const ITensorInfo *bias, const ITensorInfo *hidden_state, const ITensorInfo *output,
78 const ActivationLayerInfo &info);
79
80 // Inherited methods overridden:
81 void run() override;
Georgios Pinitas3ada2b72018-08-23 15:54:36 +010082 void prepare() override;
Michalis Spyrou542e92d2018-06-05 11:45:48 +010083
84private:
85 MemoryGroup _memory_group;
86 NEGEMM _gemm_state_f;
87 NEArithmeticAdditionKernel _add_kernel;
88 NEActivationLayerKernel _activation_kernel;
Michalis Spyrou1a569a32019-09-10 17:20:34 +010089 NEFullyConnectedLayer _fully_connected;
Georgios Pinitas3ada2b72018-08-23 15:54:36 +010090 NECopyKernel _copy_kernel;
Michalis Spyrou542e92d2018-06-05 11:45:48 +010091 Tensor _fully_connected_out;
92 Tensor _gemm_output;
93 Tensor _add_output;
Georgios Pinitas3ada2b72018-08-23 15:54:36 +010094 bool _is_prepared;
Michalis Spyrou542e92d2018-06-05 11:45:48 +010095};
96} // namespace arm_compute
97#endif /* __ARM_COMPUTE_NERNNLAYER_H__ */