blob: cbf2b35ddd27152c3314542414648262cdc2209e [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{
34FullyConnectedLayerNode::FullyConnectedLayerNode(unsigned int num_outputs)
35 : _num_outputs(num_outputs)
36{
37 _input_edges.resize(3, EmptyEdgeID);
38 _outputs.resize(1, NullTensorID);
39}
40
41TensorShape FullyConnectedLayerNode::compute_weights_shape(TensorShape input_shape, unsigned int num_outputs)
42{
43 unsigned int num_weights = 1;
44 unsigned int num_dimensions = input_shape.num_dimensions();
45 // Ignore the batch dimension if there is one:
46 if(num_dimensions == 2 || num_dimensions == 4)
47 {
48 num_dimensions--;
49 }
50 for(unsigned int i = 0; i < num_dimensions; i++)
51 {
52 num_weights *= input_shape[i];
53 }
54 return TensorShape(num_weights, num_outputs);
55}
56
57TensorShape FullyConnectedLayerNode::compute_output_shape(TensorShape input_shape, unsigned int num_outputs)
Georgios Pinitas6f669f02017-09-26 12:32:57 +010058{
59 // Note: Only 1D batch space is supported at the moment
60 unsigned int batches = input_shape[1];
61 if(input_shape.num_dimensions() > 2)
62 {
63 batches = input_shape[3];
64 }
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010065 return TensorShape(num_outputs, batches);
Georgios Pinitas6f669f02017-09-26 12:32:57 +010066}
Anthony Barbier2a07e182017-08-04 18:20:27 +010067
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010068bool FullyConnectedLayerNode::forward_descriptors()
Anthony Barbier2a07e182017-08-04 18:20:27 +010069{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010070 if((input_id(0) != NullTensorID) && (output_id(0) != NullTensorID))
Anthony Barbier2a07e182017-08-04 18:20:27 +010071 {
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010072 Tensor *dst = output(0);
73 ARM_COMPUTE_ERROR_ON(dst == nullptr);
74 dst->desc() = configure_output(0);
75 return true;
Anthony Barbier2a07e182017-08-04 18:20:27 +010076 }
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010077 return false;
Anthony Barbier2a07e182017-08-04 18:20:27 +010078}
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010079
80TensorDescriptor FullyConnectedLayerNode::configure_output(size_t idx) const
81{
82 ARM_COMPUTE_UNUSED(idx);
83 const Tensor *src = input(0);
84 ARM_COMPUTE_ERROR_ON(src == nullptr);
85
86 TensorDescriptor output_info = src->desc();
87 TensorShape output_shape = compute_output_shape(src->desc().shape, _num_outputs);
88 output_info.shape = output_shape;
89 return output_info;
90}
91
92Status FullyConnectedLayerNode::validate()
93{
94 return Status{};
95}
96
97NodeType FullyConnectedLayerNode::type() const
98{
99 return NodeType::FullyConnectedLayer;
100}
101
102void FullyConnectedLayerNode::accept(INodeVisitor &v)
103{
104 v.visit(*this);
105}
106} // namespace graph
107} // namespace arm_compute