blob: 6ea0292505bc77499a11e605575de9d3dd4aded1 [file] [log] [blame]
Anthony Barbier2a07e182017-08-04 18:20:27 +01001/*
Georgios Pinitasd9eb2752018-04-03 13:44:29 +01002 * Copyright (c) 2018 ARM Limited.
Anthony Barbier2a07e182017-08-04 18:20:27 +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 */
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010024#include "arm_compute/graph/nodes/FullyConnectedLayerNode.h"
Anthony Barbier2a07e182017-08-04 18:20:27 +010025
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010026#include "arm_compute/core/Utils.h"
27#include "arm_compute/graph/Graph.h"
28#include "arm_compute/graph/INodeVisitor.h"
Anthony Barbier2a07e182017-08-04 18:20:27 +010029
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010030namespace arm_compute
Anthony Barbier2a07e182017-08-04 18:20:27 +010031{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010032namespace graph
33{
Georgios Pinitas2f1366a2018-07-31 16:33:06 +010034FullyConnectedLayerNode::FullyConnectedLayerNode(unsigned int num_outputs, QuantizationInfo out_quant_info, FullyConnectedLayerInfo fc_info)
35 : _num_outputs(num_outputs), _out_quant_info(out_quant_info), _info(fc_info)
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010036{
37 _input_edges.resize(3, EmptyEdgeID);
38 _outputs.resize(1, NullTensorID);
39}
40
Georgios Pinitascac13b12018-04-27 19:07:19 +010041TensorDescriptor FullyConnectedLayerNode::compute_weights_descriptor(const TensorDescriptor &input_descriptor,
Georgios Pinitas2f1366a2018-07-31 16:33:06 +010042 unsigned int num_outputs,
Georgios Pinitas195b0ba2018-08-02 17:18:51 +010043 FullyConnectedLayerInfo fc_info,
Georgios Pinitas2f1366a2018-07-31 16:33:06 +010044 QuantizationInfo weights_quant_info)
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010045{
46 unsigned int num_weights = 1;
Georgios Pinitascac13b12018-04-27 19:07:19 +010047 unsigned int num_dimensions = input_descriptor.shape.num_dimensions();
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010048 // Ignore the batch dimension if there is one:
49 if(num_dimensions == 2 || num_dimensions == 4)
50 {
51 num_dimensions--;
52 }
53 for(unsigned int i = 0; i < num_dimensions; i++)
54 {
Georgios Pinitascac13b12018-04-27 19:07:19 +010055 num_weights *= input_descriptor.shape[i];
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010056 }
Georgios Pinitascac13b12018-04-27 19:07:19 +010057
58 TensorDescriptor weights_descriptor = input_descriptor;
59 weights_descriptor.shape = TensorShape(num_weights, num_outputs);
60
Georgios Pinitas195b0ba2018-08-02 17:18:51 +010061 // If weights are tranposed, use tranposed shape
62 if(!fc_info.transpose_weights)
63 {
64 weights_descriptor.shape = TensorShape(num_outputs, num_weights);
65 }
66
Georgios Pinitas2f1366a2018-07-31 16:33:06 +010067 // Set quantization info if present
68 if(!weights_quant_info.empty())
69 {
70 weights_descriptor.quant_info = weights_quant_info;
71 }
72
Georgios Pinitascac13b12018-04-27 19:07:19 +010073 return weights_descriptor;
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010074}
75
Georgios Pinitascac13b12018-04-27 19:07:19 +010076TensorDescriptor FullyConnectedLayerNode::compute_output_descriptor(const TensorDescriptor &input_descriptor,
Georgios Pinitas2f1366a2018-07-31 16:33:06 +010077 unsigned int num_outputs,
78 QuantizationInfo out_quant_info)
Georgios Pinitas6f669f02017-09-26 12:32:57 +010079{
80 // Note: Only 1D batch space is supported at the moment
Georgios Pinitascac13b12018-04-27 19:07:19 +010081 unsigned int batches = input_descriptor.shape[1];
82 if(input_descriptor.shape.num_dimensions() > 2)
Georgios Pinitas6f669f02017-09-26 12:32:57 +010083 {
Georgios Pinitascac13b12018-04-27 19:07:19 +010084 batches = input_descriptor.shape[3];
Georgios Pinitas6f669f02017-09-26 12:32:57 +010085 }
Georgios Pinitascac13b12018-04-27 19:07:19 +010086
Georgios Pinitas2f1366a2018-07-31 16:33:06 +010087 // Set descriptor shape
Georgios Pinitascac13b12018-04-27 19:07:19 +010088 TensorDescriptor output_descriptor = input_descriptor;
89 output_descriptor.shape = TensorShape(num_outputs, batches);
90
Georgios Pinitas2f1366a2018-07-31 16:33:06 +010091 // Set quantization info if present
92 if(!out_quant_info.empty())
93 {
94 output_descriptor.quant_info = out_quant_info;
95 }
96
Georgios Pinitascac13b12018-04-27 19:07:19 +010097 return output_descriptor;
Georgios Pinitas6f669f02017-09-26 12:32:57 +010098}
Anthony Barbier2a07e182017-08-04 18:20:27 +010099
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100100FullyConnectedLayerInfo FullyConnectedLayerNode::info() const
101{
102 return _info;
103}
104
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100105bool FullyConnectedLayerNode::forward_descriptors()
Anthony Barbier2a07e182017-08-04 18:20:27 +0100106{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100107 if((input_id(0) != NullTensorID) && (output_id(0) != NullTensorID))
Anthony Barbier2a07e182017-08-04 18:20:27 +0100108 {
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100109 Tensor *dst = output(0);
110 ARM_COMPUTE_ERROR_ON(dst == nullptr);
111 dst->desc() = configure_output(0);
112 return true;
Anthony Barbier2a07e182017-08-04 18:20:27 +0100113 }
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100114 return false;
Anthony Barbier2a07e182017-08-04 18:20:27 +0100115}
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100116
117TensorDescriptor FullyConnectedLayerNode::configure_output(size_t idx) const
118{
119 ARM_COMPUTE_UNUSED(idx);
120 const Tensor *src = input(0);
121 ARM_COMPUTE_ERROR_ON(src == nullptr);
122
Georgios Pinitas2f1366a2018-07-31 16:33:06 +0100123 return compute_output_descriptor(src->desc(), _num_outputs, _out_quant_info);
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100124}
125
126NodeType FullyConnectedLayerNode::type() const
127{
128 return NodeType::FullyConnectedLayer;
129}
130
131void FullyConnectedLayerNode::accept(INodeVisitor &v)
132{
133 v.visit(*this);
134}
135} // namespace graph
136} // namespace arm_compute