blob: d94a7851ff2c2d820d241a613410c4f36c7e1fe0 [file] [log] [blame]
Kaizen8938bd32017-09-28 14:38:23 +01001/*
Jenkinsb3a371b2018-05-23 11:36:53 +01002 * Copyright (c) 2018 ARM Limited.
Kaizen8938bd32017-09-28 14:38:23 +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 */
Jenkinsb3a371b2018-05-23 11:36:53 +010024#include "arm_compute/graph/nodes/FullyConnectedLayerNode.h"
Kaizen8938bd32017-09-28 14:38:23 +010025
Jenkinsb3a371b2018-05-23 11:36:53 +010026#include "arm_compute/core/Utils.h"
27#include "arm_compute/graph/Graph.h"
28#include "arm_compute/graph/INodeVisitor.h"
Kaizen8938bd32017-09-28 14:38:23 +010029
Jenkinsb3a371b2018-05-23 11:36:53 +010030namespace arm_compute
Kaizen8938bd32017-09-28 14:38:23 +010031{
Jenkinsb3a371b2018-05-23 11:36:53 +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
41TensorDescriptor FullyConnectedLayerNode::compute_weights_descriptor(const TensorDescriptor &input_descriptor,
42 unsigned int num_outputs)
43{
44 unsigned int num_weights = 1;
45 unsigned int num_dimensions = input_descriptor.shape.num_dimensions();
46 // Ignore the batch dimension if there is one:
47 if(num_dimensions == 2 || num_dimensions == 4)
48 {
49 num_dimensions--;
50 }
51 for(unsigned int i = 0; i < num_dimensions; i++)
52 {
53 num_weights *= input_descriptor.shape[i];
54 }
55
56 TensorDescriptor weights_descriptor = input_descriptor;
57 weights_descriptor.shape = TensorShape(num_weights, num_outputs);
58
59 return weights_descriptor;
60}
61
62TensorDescriptor FullyConnectedLayerNode::compute_output_descriptor(const TensorDescriptor &input_descriptor,
63 unsigned int num_outputs)
Kaizenbf8b01d2017-10-12 14:26:51 +010064{
65 // Note: Only 1D batch space is supported at the moment
Jenkinsb3a371b2018-05-23 11:36:53 +010066 unsigned int batches = input_descriptor.shape[1];
67 if(input_descriptor.shape.num_dimensions() > 2)
Kaizenbf8b01d2017-10-12 14:26:51 +010068 {
Jenkinsb3a371b2018-05-23 11:36:53 +010069 batches = input_descriptor.shape[3];
Kaizenbf8b01d2017-10-12 14:26:51 +010070 }
Kaizen8938bd32017-09-28 14:38:23 +010071
Jenkinsb3a371b2018-05-23 11:36:53 +010072 TensorDescriptor output_descriptor = input_descriptor;
73 output_descriptor.shape = TensorShape(num_outputs, batches);
74
75 return output_descriptor;
76}
77
78bool FullyConnectedLayerNode::forward_descriptors()
Kaizen8938bd32017-09-28 14:38:23 +010079{
Jenkinsb3a371b2018-05-23 11:36:53 +010080 if((input_id(0) != NullTensorID) && (output_id(0) != NullTensorID))
Kaizen8938bd32017-09-28 14:38:23 +010081 {
Jenkinsb3a371b2018-05-23 11:36:53 +010082 Tensor *dst = output(0);
83 ARM_COMPUTE_ERROR_ON(dst == nullptr);
84 dst->desc() = configure_output(0);
85 return true;
Kaizen8938bd32017-09-28 14:38:23 +010086 }
Jenkinsb3a371b2018-05-23 11:36:53 +010087 return false;
Kaizen8938bd32017-09-28 14:38:23 +010088}
Jenkinsb3a371b2018-05-23 11:36:53 +010089
90TensorDescriptor FullyConnectedLayerNode::configure_output(size_t idx) const
91{
92 ARM_COMPUTE_UNUSED(idx);
93 const Tensor *src = input(0);
94 ARM_COMPUTE_ERROR_ON(src == nullptr);
95
96 return compute_output_descriptor(src->desc(), _num_outputs);
97}
98
99NodeType FullyConnectedLayerNode::type() const
100{
101 return NodeType::FullyConnectedLayer;
102}
103
104void FullyConnectedLayerNode::accept(INodeVisitor &v)
105{
106 v.visit(*this);
107}
108} // namespace graph
109} // namespace arm_compute