forked from tensorflow/tflite-micro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaximum_minimum.cc
More file actions
247 lines (213 loc) · 9.31 KB
/
Copy pathmaximum_minimum.cc
File metadata and controls
247 lines (213 loc) · 9.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
/* Copyright 2024 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "tensorflow/lite/micro/kernels/maximum_minimum.h"
#include "Include/arm_nnfunctions.h"
#include "tensorflow/lite/c/builtin_op_data.h"
#include "tensorflow/lite/c/common.h"
#include "tensorflow/lite/kernels/internal/common.h"
#include "tensorflow/lite/kernels/internal/quantization_util.h"
#include "tensorflow/lite/kernels/internal/tensor_ctypes.h"
#include "tensorflow/lite/kernels/kernel_util.h"
#include "tensorflow/lite/kernels/op_macros.h"
#include "tensorflow/lite/micro/kernels/kernel_util.h"
#include "tensorflow/lite/micro/micro_log.h"
namespace tflite {
namespace {
cmsis_nn_dims FillVariableShape(int32_t rank, int32_t* tensor_dims) {
if (rank == 4) {
return {tensor_dims[0], tensor_dims[1], tensor_dims[2], tensor_dims[3]};
} else if (rank == 3) {
return {1, tensor_dims[0], tensor_dims[1], tensor_dims[2]};
} else if (rank == 2) {
return {1, 1, tensor_dims[0], tensor_dims[1]};
} else {
return {1, 1, 1, 1};
}
}
TfLiteStatus EvalMaximum(TfLiteContext* context, TfLiteNode* node) {
OpContext op_context(context, node);
const TfLiteEvalTensor* input1 =
tflite::micro::GetEvalInput(context, node, kInputTensor1);
const TfLiteEvalTensor* input2 =
tflite::micro::GetEvalInput(context, node, kInputTensor2);
TfLiteEvalTensor* output =
tflite::micro::GetEvalOutput(context, node, kOutputTensor);
RuntimeShape input_1_shape = tflite::micro::GetTensorShape(input1);
RuntimeShape input_2_shape = tflite::micro::GetTensorShape(input2);
RuntimeShape output_shape = tflite::micro::GetTensorShape(output);
cmsis_nn_dims input_1_dims = FillVariableShape(
input_1_shape.DimensionsCount(), input_1_shape.DimsData());
cmsis_nn_dims input_2_dims = FillVariableShape(
input_2_shape.DimensionsCount(), input_2_shape.DimsData());
cmsis_nn_dims output_dims = FillVariableShape(output_shape.DimensionsCount(),
output_shape.DimsData());
switch (op_context.output->type) {
case kTfLiteInt8:
cmsis_nn_context ctx;
ctx.buf = nullptr;
ctx.size = 0;
arm_maximum_s8(
&ctx, tflite::micro::GetTensorData<int8_t>(input1), &input_1_dims,
tflite::micro::GetTensorData<int8_t>(input2), &input_2_dims,
tflite::micro::GetTensorData<int8_t>(output), &output_dims);
break;
case kTfLiteFloat32:
TFLiteOperation<float, MaximumOp>(context, node, op_context);
break;
case kTfLiteInt16:
TFLiteOperation<int16_t, MaximumOp>(context, node, op_context);
break;
case kTfLiteInt32:
TFLiteOperation<int32_t, MaximumOp>(context, node, op_context);
break;
case kTfLiteInt64:
TFLiteOperation<int64_t, MaximumOp>(context, node, op_context);
break;
default:
MicroPrintf("Type %s (%d) is not supported by Maximum/Minimum.",
TfLiteTypeGetName(op_context.output->type),
op_context.output->type);
return kTfLiteError;
}
return kTfLiteOk;
}
TfLiteStatus EvalMaximumInt8(TfLiteContext* context, TfLiteNode* node) {
OpContext op_context(context, node);
const TfLiteEvalTensor* input1 =
tflite::micro::GetEvalInput(context, node, kInputTensor1);
const TfLiteEvalTensor* input2 =
tflite::micro::GetEvalInput(context, node, kInputTensor2);
TfLiteEvalTensor* output =
tflite::micro::GetEvalOutput(context, node, kOutputTensor);
RuntimeShape input_1_shape = tflite::micro::GetTensorShape(input1);
RuntimeShape input_2_shape = tflite::micro::GetTensorShape(input2);
RuntimeShape output_shape = tflite::micro::GetTensorShape(output);
cmsis_nn_dims input_1_dims = FillVariableShape(
input_1_shape.DimensionsCount(), input_1_shape.DimsData());
cmsis_nn_dims input_2_dims = FillVariableShape(
input_2_shape.DimensionsCount(), input_2_shape.DimsData());
cmsis_nn_dims output_dims = FillVariableShape(output_shape.DimensionsCount(),
output_shape.DimsData());
switch (op_context.output->type) {
case kTfLiteInt8:
cmsis_nn_context ctx;
ctx.buf = nullptr;
ctx.size = 0;
arm_maximum_s8(
&ctx, tflite::micro::GetTensorData<int8_t>(input1), &input_1_dims,
tflite::micro::GetTensorData<int8_t>(input2), &input_2_dims,
tflite::micro::GetTensorData<int8_t>(output), &output_dims);
break;
default:
MicroPrintf("Type %s (%d) is not supported by Maximum Int8 Registration.",
TfLiteTypeGetName(op_context.output->type),
op_context.output->type);
return kTfLiteError;
}
return kTfLiteOk;
}
TfLiteStatus EvalMinimum(TfLiteContext* context, TfLiteNode* node) {
OpContext op_context(context, node);
const TfLiteEvalTensor* input1 =
tflite::micro::GetEvalInput(context, node, kInputTensor1);
const TfLiteEvalTensor* input2 =
tflite::micro::GetEvalInput(context, node, kInputTensor2);
TfLiteEvalTensor* output =
tflite::micro::GetEvalOutput(context, node, kOutputTensor);
RuntimeShape input_1_shape = tflite::micro::GetTensorShape(input1);
RuntimeShape input_2_shape = tflite::micro::GetTensorShape(input2);
RuntimeShape output_shape = tflite::micro::GetTensorShape(output);
cmsis_nn_dims input_1_dims = FillVariableShape(
input_1_shape.DimensionsCount(), input_1_shape.DimsData());
cmsis_nn_dims input_2_dims = FillVariableShape(
input_2_shape.DimensionsCount(), input_2_shape.DimsData());
cmsis_nn_dims output_dims = FillVariableShape(output_shape.DimensionsCount(),
output_shape.DimsData());
switch (op_context.output->type) {
case kTfLiteInt8:
cmsis_nn_context ctx;
ctx.buf = nullptr;
ctx.size = 0;
arm_minimum_s8(
&ctx, tflite::micro::GetTensorData<int8_t>(input1), &input_1_dims,
tflite::micro::GetTensorData<int8_t>(input2), &input_2_dims,
tflite::micro::GetTensorData<int8_t>(output), &output_dims);
break;
case kTfLiteFloat32:
TFLiteOperation<float, MinimumOp>(context, node, op_context);
break;
case kTfLiteInt16:
TFLiteOperation<int16_t, MinimumOp>(context, node, op_context);
break;
case kTfLiteInt32:
TFLiteOperation<int32_t, MinimumOp>(context, node, op_context);
break;
case kTfLiteInt64:
TFLiteOperation<int64_t, MinimumOp>(context, node, op_context);
break;
default:
MicroPrintf("Type %s (%d) is not supported by Maximum/Minimum.",
TfLiteTypeGetName(op_context.output->type),
op_context.output->type);
return kTfLiteError;
}
return kTfLiteOk;
}
TfLiteStatus EvalMinimumInt8(TfLiteContext* context, TfLiteNode* node) {
OpContext op_context(context, node);
const TfLiteEvalTensor* input1 =
tflite::micro::GetEvalInput(context, node, kInputTensor1);
const TfLiteEvalTensor* input2 =
tflite::micro::GetEvalInput(context, node, kInputTensor2);
TfLiteEvalTensor* output =
tflite::micro::GetEvalOutput(context, node, kOutputTensor);
RuntimeShape input_1_shape = tflite::micro::GetTensorShape(input1);
RuntimeShape input_2_shape = tflite::micro::GetTensorShape(input2);
RuntimeShape output_shape = tflite::micro::GetTensorShape(output);
cmsis_nn_dims input_1_dims = FillVariableShape(
input_1_shape.DimensionsCount(), input_1_shape.DimsData());
cmsis_nn_dims input_2_dims = FillVariableShape(
input_2_shape.DimensionsCount(), input_2_shape.DimsData());
cmsis_nn_dims output_dims = FillVariableShape(output_shape.DimensionsCount(),
output_shape.DimsData());
switch (op_context.output->type) {
case kTfLiteInt8:
cmsis_nn_context ctx;
ctx.buf = nullptr;
ctx.size = 0;
arm_minimum_s8(
&ctx, tflite::micro::GetTensorData<int8_t>(input1), &input_1_dims,
tflite::micro::GetTensorData<int8_t>(input2), &input_2_dims,
tflite::micro::GetTensorData<int8_t>(output), &output_dims);
break;
default:
MicroPrintf("Type %s (%d) is not supported by Minimum Int8 registration.",
TfLiteTypeGetName(op_context.output->type),
op_context.output->type);
return kTfLiteError;
}
return kTfLiteOk;
}
} // namespace
TFLMRegistration Register_MAXIMUM() {
return tflite::micro::RegisterOp(nullptr, nullptr, EvalMaximum);
}
TFLMRegistration Register_MINIMUM() {
return tflite::micro::RegisterOp(nullptr, nullptr, EvalMinimum);
}
TFLMRegistration Register_MAXIMUM_INT8() {
return tflite::micro::RegisterOp(nullptr, nullptr, EvalMaximumInt8);
}
TFLMRegistration Register_MINIMUM_INT8() {
return tflite::micro::RegisterOp(nullptr, nullptr, EvalMinimumInt8);
}
} // namespace tflite