1 /* Copyright 2020 The TensorFlow Authors. All Rights Reserved.
2
3 Licensed under the Apache License, Version 2.0 (the "License");
4 you may not use this file except in compliance with the License.
5 You may obtain a copy of the License at
6
7 http://www.apache.org/licenses/LICENSE-2.0
8
9 Unless required by applicable law or agreed to in writing, software
10 distributed under the License is distributed on an "AS IS" BASIS,
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 See the License for the specific language governing permissions and
13 limitations under the License.
14 ==============================================================================*/
15 #ifndef TENSORFLOW_LITE_KERNELS_INTERNAL_REFERENCE_ADD_N_H_
16 #define TENSORFLOW_LITE_KERNELS_INTERNAL_REFERENCE_ADD_N_H_
17
18 #include "tensorflow/lite/kernels/internal/types.h"
19
20 namespace tflite {
21 namespace reference_ops {
22
23 // T is expected to be either float or int.
24 template <typename T>
AddN(const RuntimeShape & input_shape,const size_t num_inputs,T * const * input_data,T * output_data)25 inline void AddN(const RuntimeShape& input_shape, const size_t num_inputs,
26 T* const* input_data, T* output_data) {
27 // All inputs and output should have the same shape, this is checked during
28 // Prepare stage.
29 const size_t size = input_shape.FlatSize();
30 for (int i = 0; i < size; ++i) {
31 T x = 0;
32 for (int j = 0; j < num_inputs; ++j) {
33 x += input_data[j][i];
34 }
35 output_data[i] = x;
36 }
37 }
38
39 } // namespace reference_ops
40 } // namespace tflite
41
42 #endif // TENSORFLOW_LITE_KERNELS_INTERNAL_REFERENCE_ADD_N_H_
43