blob: 42f787090e5e7e991000a6f5682270d6e7f4df6f [file] [log] [blame]
Giorgio Arena657bdb32018-04-26 18:52:01 +01001/*
Michalis Spyrou1a569a32019-09-10 17:20:34 +01002 * Copyright (c) 2018-2019 ARM Limited.
Giorgio Arena657bdb32018-04-26 18:52:01 +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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_NECONVERTFULLYCONNECTEDWEIGHTS_H
25#define ARM_COMPUTE_NECONVERTFULLYCONNECTEDWEIGHTS_H
Giorgio Arena657bdb32018-04-26 18:52:01 +010026
27#include "arm_compute/core/NEON/kernels/NEConvertFullyConnectedWeightsKernel.h"
28#include "arm_compute/runtime/IFunction.h"
Michalis Spyrou1a569a32019-09-10 17:20:34 +010029#include "arm_compute/runtime/ITransformWeights.h"
Giorgio Arena657bdb32018-04-26 18:52:01 +010030#include "arm_compute/runtime/NEON/NEScheduler.h"
Michalis Spyrou1a569a32019-09-10 17:20:34 +010031#include "arm_compute/runtime/Tensor.h"
Giorgio Arena657bdb32018-04-26 18:52:01 +010032
33namespace arm_compute
34{
Georgios Pinitas33843562019-12-10 13:33:18 +000035// Forward declarations
Giorgio Arena657bdb32018-04-26 18:52:01 +010036class ITensor;
37
38/** Basic function to run @ref NEConvertFullyConnectedWeightsKernel. */
39class NEConvertFullyConnectedWeights : public IFunction
40{
41public:
42 /** Default constructor */
43 NEConvertFullyConnectedWeights();
44 /** Initialize the function.
45 *
Georgios Pinitas33843562019-12-10 13:33:18 +000046 * @param[in] input Source weights tensor to convert. Must be 2 dimensional. Data types supported: All.
Giorgio Arena657bdb32018-04-26 18:52:01 +010047 * @param[out] output The converted weights tensor. Shape and Data Type: Same as @p input.
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010048 * @param[in] original_input_shape Shape of the original input tensor (the one entering fully connected layer).
Giorgio Arena657bdb32018-04-26 18:52:01 +010049 * @param[in] data_layout The data layout the weights have been trained in.
50 */
51 void configure(const ITensor *input, ITensor *output, const TensorShape &original_input_shape, DataLayout data_layout);
52 /** Static function to check if given info will lead to a valid configuration of @ref NEConvertFullyConnectedWeights
53 *
Georgios Pinitas33843562019-12-10 13:33:18 +000054 * @param[in] input Source weights tensor info to convert. Must be 2 dimensional. Data types supported: All.
Giorgio Arena657bdb32018-04-26 18:52:01 +010055 * @param[in] output The converted weights tensor info. Shape and Data Type: Same as @p input.
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010056 * @param[in] original_input_shape Shape of the original input tensor (the one entering fully connected layer).
Giorgio Arena657bdb32018-04-26 18:52:01 +010057 * @param[in] data_layout The data layout the weights have been trained in.
Michalis Spyrou1a569a32019-09-10 17:20:34 +010058 *
59 * @return A Status
Giorgio Arena657bdb32018-04-26 18:52:01 +010060 */
61 static Status validate(const ITensorInfo *input, const ITensorInfo *output, const TensorShape &original_input_shape, DataLayout data_layout);
62
63 // Inherited methods overriden:
64 void run() override;
65
66private:
67 NEConvertFullyConnectedWeightsKernel _kernel;
68};
Michalis Spyrou1a569a32019-09-10 17:20:34 +010069
70namespace weights_transformations
71{
72/** Basic function to run @ref NEConvertFullyConnectedWeightsKernel. */
73class NEConvertFullyConnectedWeightsManaged : public ITransformWeights
74{
75public:
76 void run() override
77 {
78 _output.allocator()->allocate();
79 _func.run();
80 _reshape_run = true;
81 }
82
83 void release() override
84 {
85 _output.allocator()->free();
86 }
87
88 ITensor *get_weights() override
89 {
90 return &_output;
91 }
92
93 uint32_t uid() override
94 {
95 return _uid;
96 }
97
98 void configure(const ITensor *input, const TensorShape &original_input_shape, DataLayout data_layout)
99 {
100 _func.configure(input, &_output, original_input_shape, data_layout);
101 }
102
103private:
104 static constexpr uint32_t _uid = 0x4;
105 Tensor _output{};
106 NEConvertFullyConnectedWeights _func{};
107};
108} // namespace weights_transformations
109} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000110#endif /* ARM_COMPUTE_NECONVERTFULLYCONNECTEDWEIGHTS_H */