blob: 4426e953ee91e3885484e5961a12bdd89db124d3 [file] [log] [blame]
Georgios Pinitasd8734b52017-12-22 15:27:52 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 Arm Limited.
Georgios Pinitasd8734b52017-12-22 15:27:52 +00003 *
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/EltwiseLayerNode.h"
Georgios Pinitasd8734b52017-12-22 15:27:52 +000025
thecha0196a14002020-07-28 17:45:07 +010026#include "arm_compute/core/TensorShape.h"
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010027#include "arm_compute/graph/Graph.h"
28#include "arm_compute/graph/INodeVisitor.h"
Georgios Pinitasd8734b52017-12-22 15:27:52 +000029
30namespace arm_compute
31{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010032namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +000033{
Sang-Hoon Park797b76b2020-03-11 23:21:14 +000034EltwiseLayerNode::EltwiseLayerNode(const descriptors::EltwiseLayerDescriptor &descriptor)
35 : descriptor(descriptor)
Georgios Pinitasd8734b52017-12-22 15:27:52 +000036{
37 _input_edges.resize(2, EmptyEdgeID);
38 _outputs.resize(1, NullTensorID);
39}
40
41EltwiseOperation EltwiseLayerNode::eltwise_operation() const
42{
Sang-Hoon Park797b76b2020-03-11 23:21:14 +000043 return descriptor.op;
Georgios Pinitasd8734b52017-12-22 15:27:52 +000044}
45
Isabella Gottardi88d5b222018-04-06 12:24:55 +010046ConvertPolicy EltwiseLayerNode::convert_policy() const
47{
Sang-Hoon Park797b76b2020-03-11 23:21:14 +000048 return descriptor.c_policy;
Isabella Gottardi88d5b222018-04-06 12:24:55 +010049}
50
51RoundingPolicy EltwiseLayerNode::rounding_policy() const
52{
Sang-Hoon Park797b76b2020-03-11 23:21:14 +000053 return descriptor.r_policy;
Isabella Gottardi88d5b222018-04-06 12:24:55 +010054}
55
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000056ActivationLayerInfo EltwiseLayerNode::fused_activation() const
57{
58 return descriptor.fused_activation;
59}
60
Sheri Zhang16dddd22020-05-27 15:03:48 +010061QuantizationInfo EltwiseLayerNode::output_quant_info() const
62{
63 return descriptor.out_quant_info;
64}
65
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000066void EltwiseLayerNode::set_fused_activation(ActivationLayerInfo fused_activation)
67{
68 descriptor.fused_activation = fused_activation;
69}
70
Georgios Pinitasd8734b52017-12-22 15:27:52 +000071bool EltwiseLayerNode::forward_descriptors()
72{
thecha0196a14002020-07-28 17:45:07 +010073 if((input_id(0) != NullTensorID) && (input_id(1) != NullTensorID) && (output_id(0) != NullTensorID))
Georgios Pinitasd8734b52017-12-22 15:27:52 +000074 {
75 Tensor *dst = output(0);
76 ARM_COMPUTE_ERROR_ON(dst == nullptr);
77 dst->desc() = configure_output(0);
78 return true;
79 }
80 return false;
81}
82
83TensorDescriptor EltwiseLayerNode::configure_output(size_t idx) const
84{
Sang-Hoon Park797b76b2020-03-11 23:21:14 +000085 ARM_COMPUTE_UNUSED(idx);
Georgios Pinitasd8734b52017-12-22 15:27:52 +000086
thecha0196a14002020-07-28 17:45:07 +010087 const Tensor *src1 = input(0);
88 ARM_COMPUTE_ERROR_ON(src1 == nullptr);
Georgios Pinitasd8734b52017-12-22 15:27:52 +000089
thecha0196a14002020-07-28 17:45:07 +010090 const Tensor *src2 = input(1);
91 ARM_COMPUTE_ERROR_ON(src2 == nullptr);
92
93 auto output_info = src1->desc();
94
95 TensorShape out_shape = TensorShape::broadcast_shape(src1->desc().shape, src2->desc().shape);
96 ARM_COMPUTE_ERROR_ON_MSG(out_shape.total_size() == 0, "Inputs are not broadcast compatible");
97
98 output_info.set_shape(out_shape);
Sang-Hoon Park68001172020-03-06 16:32:01 +000099
Sang-Hoon Park797b76b2020-03-11 23:21:14 +0000100 if(!descriptor.out_quant_info.empty())
Sang-Hoon Park68001172020-03-06 16:32:01 +0000101 {
Sang-Hoon Park797b76b2020-03-11 23:21:14 +0000102 output_info.set_quantization_info(descriptor.out_quant_info);
Sang-Hoon Park68001172020-03-06 16:32:01 +0000103 }
104
105 return output_info;
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000106}
107
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000108NodeType EltwiseLayerNode::type() const
109{
110 return NodeType::EltwiseLayer;
111}
112
113void EltwiseLayerNode::accept(INodeVisitor &v)
114{
115 v.visit(*this);
116}
Sheri Zhang16dddd22020-05-27 15:03:48 +0100117
118UnaryEltwiseLayerNode::UnaryEltwiseLayerNode(const descriptors::UnaryEltwiseLayerDescriptor &descriptor)
119 : descriptor(descriptor)
120{
121 _input_edges.resize(1, EmptyEdgeID);
122 _outputs.resize(1, NullTensorID);
123}
124
125descriptors::UnaryEltwiseLayerDescriptor UnaryEltwiseLayerNode::eltwise_descriptor() const
126{
127 return descriptor;
128}
129
130void UnaryEltwiseLayerNode::set_fused_activation(ActivationLayerInfo fused_activation)
131{
132 descriptor.fused_activation = fused_activation;
133}
134
135bool UnaryEltwiseLayerNode::forward_descriptors()
136{
137 if((input_id(0) != NullTensorID) && (output_id(0) != NullTensorID))
138 {
139 Tensor *dst = output(0);
140 ARM_COMPUTE_ERROR_ON(dst == nullptr);
141 dst->desc() = configure_output(0);
142 return true;
143 }
144 return false;
145}
146
147TensorDescriptor UnaryEltwiseLayerNode::configure_output(size_t idx) const
148{
149 ARM_COMPUTE_UNUSED(idx);
150
151 const Tensor *src = input(0);
152 ARM_COMPUTE_ERROR_ON(src == nullptr);
153
154 auto output_info = src->desc();
155
156 if(!descriptor.out_quant_info.empty())
157 {
158 output_info.set_quantization_info(descriptor.out_quant_info);
159 }
160
161 return output_info;
162}
163
164NodeType UnaryEltwiseLayerNode::type() const
165{
166 return NodeType::UnaryEltwiseLayer;
167}
168
169void UnaryEltwiseLayerNode::accept(INodeVisitor &v)
170{
171 v.visit(*this);
172}
173
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100174} // namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000175} // namespace arm_compute