blob: 3fadd480f392b82fa9b7398021b73c0455e293b2 [file] [log] [blame]
Slava Shklyaev871be942018-09-12 14:52:02 +01001/*
2 * Copyright (C) 2018 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "neuralnetworks_hidl_hal_test"
18
19#include "VtsHalNeuralnetworks.h"
20
21#include "Callbacks.h"
22
23namespace android {
24namespace hardware {
25namespace neuralnetworks {
26namespace V1_2 {
27
28using V1_0::IPreparedModel;
Slava Shklyaev871be942018-09-12 14:52:02 +010029using V1_0::OperandLifeTime;
Slava Shklyaev871be942018-09-12 14:52:02 +010030using V1_1::ExecutionPreference;
31
32namespace vts {
33namespace functional {
34
35using ::android::hardware::neuralnetworks::V1_0::implementation::ExecutionCallback;
36using ::android::hardware::neuralnetworks::V1_0::implementation::PreparedModelCallback;
37
38///////////////////////// UTILITY FUNCTIONS /////////////////////////
39
40static void validateGetSupportedOperations(const sp<IDevice>& device, const std::string& message,
41 const Model& model) {
42 SCOPED_TRACE(message + " [getSupportedOperations_1_2]");
43
44 Return<void> ret =
45 device->getSupportedOperations_1_2(model, [&](ErrorStatus status, const hidl_vec<bool>&) {
46 EXPECT_EQ(ErrorStatus::INVALID_ARGUMENT, status);
47 });
48 EXPECT_TRUE(ret.isOk());
49}
50
51static void validatePrepareModel(const sp<IDevice>& device, const std::string& message,
52 const Model& model, ExecutionPreference preference) {
53 SCOPED_TRACE(message + " [prepareModel_1_2]");
54
55 sp<PreparedModelCallback> preparedModelCallback = new PreparedModelCallback();
56 ASSERT_NE(nullptr, preparedModelCallback.get());
57 Return<ErrorStatus> prepareLaunchStatus =
58 device->prepareModel_1_2(model, preference, preparedModelCallback);
59 ASSERT_TRUE(prepareLaunchStatus.isOk());
60 ASSERT_EQ(ErrorStatus::INVALID_ARGUMENT, static_cast<ErrorStatus>(prepareLaunchStatus));
61
62 preparedModelCallback->wait();
63 ErrorStatus prepareReturnStatus = preparedModelCallback->getStatus();
64 ASSERT_EQ(ErrorStatus::INVALID_ARGUMENT, prepareReturnStatus);
65 sp<IPreparedModel> preparedModel = preparedModelCallback->getPreparedModel();
66 ASSERT_EQ(nullptr, preparedModel.get());
67}
68
69static bool validExecutionPreference(ExecutionPreference preference) {
70 return preference == ExecutionPreference::LOW_POWER ||
71 preference == ExecutionPreference::FAST_SINGLE_ANSWER ||
72 preference == ExecutionPreference::SUSTAINED_SPEED;
73}
74
75// Primary validation function. This function will take a valid model, apply a
76// mutation to it to invalidate the model, then pass it to interface calls that
77// use the model. Note that the model here is passed by value, and any mutation
78// to the model does not leave this function.
79static void validate(const sp<IDevice>& device, const std::string& message, Model model,
80 const std::function<void(Model*)>& mutation,
81 ExecutionPreference preference = ExecutionPreference::FAST_SINGLE_ANSWER) {
82 mutation(&model);
83 if (validExecutionPreference(preference)) {
84 validateGetSupportedOperations(device, message, model);
85 }
86 validatePrepareModel(device, message, model, preference);
87}
88
89// Delete element from hidl_vec. hidl_vec doesn't support a "remove" operation,
90// so this is efficiently accomplished by moving the element to the end and
91// resizing the hidl_vec to one less.
92template <typename Type>
93static void hidl_vec_removeAt(hidl_vec<Type>* vec, uint32_t index) {
94 if (vec) {
95 std::rotate(vec->begin() + index, vec->begin() + index + 1, vec->end());
96 vec->resize(vec->size() - 1);
97 }
98}
99
100template <typename Type>
101static uint32_t hidl_vec_push_back(hidl_vec<Type>* vec, const Type& value) {
102 // assume vec is valid
103 const uint32_t index = vec->size();
104 vec->resize(index + 1);
105 (*vec)[index] = value;
106 return index;
107}
108
109static uint32_t addOperand(Model* model) {
110 return hidl_vec_push_back(&model->operands,
111 {
112 .type = OperandType::INT32,
113 .dimensions = {},
114 .numberOfConsumers = 0,
115 .scale = 0.0f,
116 .zeroPoint = 0,
117 .lifetime = OperandLifeTime::MODEL_INPUT,
118 .location = {.poolIndex = 0, .offset = 0, .length = 0},
119 });
120}
121
122static uint32_t addOperand(Model* model, OperandLifeTime lifetime) {
123 uint32_t index = addOperand(model);
124 model->operands[index].numberOfConsumers = 1;
125 model->operands[index].lifetime = lifetime;
126 return index;
127}
128
129///////////////////////// VALIDATE MODEL OPERAND TYPE /////////////////////////
130
Michael K. Sandersc785d462018-10-30 15:16:54 +0000131static const uint32_t invalidOperandTypes[] = {
132 static_cast<uint32_t>(OperandTypeRange::OPERAND_FUNDAMENTAL_MIN) - 1,
133 static_cast<uint32_t>(OperandTypeRange::OPERAND_FUNDAMENTAL_MAX) + 1,
134 static_cast<uint32_t>(OperandTypeRange::OPERAND_OEM_MIN) - 1,
135 static_cast<uint32_t>(OperandTypeRange::OPERAND_OEM_MAX) + 1,
Slava Shklyaev871be942018-09-12 14:52:02 +0100136};
137
138static void mutateOperandTypeTest(const sp<IDevice>& device, const Model& model) {
139 for (size_t operand = 0; operand < model.operands.size(); ++operand) {
Michael K. Sandersc785d462018-10-30 15:16:54 +0000140 for (uint32_t invalidOperandType : invalidOperandTypes) {
Slava Shklyaev871be942018-09-12 14:52:02 +0100141 const std::string message = "mutateOperandTypeTest: operand " +
142 std::to_string(operand) + " set to value " +
143 std::to_string(invalidOperandType);
144 validate(device, message, model, [operand, invalidOperandType](Model* model) {
145 model->operands[operand].type = static_cast<OperandType>(invalidOperandType);
146 });
147 }
148 }
149}
150
151///////////////////////// VALIDATE OPERAND RANK /////////////////////////
152
153static uint32_t getInvalidRank(OperandType type) {
154 switch (type) {
Xusong Wang7bca34b2018-12-05 14:21:51 -0800155 case OperandType::FLOAT16:
Slava Shklyaev871be942018-09-12 14:52:02 +0100156 case OperandType::FLOAT32:
157 case OperandType::INT32:
158 case OperandType::UINT32:
Lev Proleevabad9ea2018-10-01 11:18:31 +0100159 case OperandType::BOOL:
Slava Shklyaev871be942018-09-12 14:52:02 +0100160 return 1;
Michael K. Sanders19d63452018-10-12 09:10:15 +0100161 case OperandType::TENSOR_FLOAT16:
Slava Shklyaev871be942018-09-12 14:52:02 +0100162 case OperandType::TENSOR_FLOAT32:
163 case OperandType::TENSOR_INT32:
164 case OperandType::TENSOR_QUANT8_ASYMM:
Lev Proleev48c88202018-11-13 15:42:36 +0000165 case OperandType::TENSOR_QUANT16_SYMM:
Slava Shklyaev871be942018-09-12 14:52:02 +0100166 return 0;
167 default:
168 return 0;
169 }
170}
171
172static void mutateOperandRankTest(const sp<IDevice>& device, const Model& model) {
173 for (size_t operand = 0; operand < model.operands.size(); ++operand) {
174 const uint32_t invalidRank = getInvalidRank(model.operands[operand].type);
175 const std::string message = "mutateOperandRankTest: operand " + std::to_string(operand) +
176 " has rank of " + std::to_string(invalidRank);
177 validate(device, message, model, [operand, invalidRank](Model* model) {
178 model->operands[operand].dimensions = std::vector<uint32_t>(invalidRank, 0);
179 });
180 }
181}
182
183///////////////////////// VALIDATE OPERAND SCALE /////////////////////////
184
185static float getInvalidScale(OperandType type) {
186 switch (type) {
Xusong Wang7bca34b2018-12-05 14:21:51 -0800187 case OperandType::FLOAT16:
Slava Shklyaev871be942018-09-12 14:52:02 +0100188 case OperandType::FLOAT32:
189 case OperandType::INT32:
190 case OperandType::UINT32:
Lev Proleevabad9ea2018-10-01 11:18:31 +0100191 case OperandType::BOOL:
Michael K. Sanders19d63452018-10-12 09:10:15 +0100192 case OperandType::TENSOR_FLOAT16:
Slava Shklyaev871be942018-09-12 14:52:02 +0100193 case OperandType::TENSOR_FLOAT32:
194 return 1.0f;
195 case OperandType::TENSOR_INT32:
196 return -1.0f;
197 case OperandType::TENSOR_QUANT8_ASYMM:
Lev Proleev48c88202018-11-13 15:42:36 +0000198 case OperandType::TENSOR_QUANT16_SYMM:
Slava Shklyaev871be942018-09-12 14:52:02 +0100199 return 0.0f;
200 default:
201 return 0.0f;
202 }
203}
204
205static void mutateOperandScaleTest(const sp<IDevice>& device, const Model& model) {
206 for (size_t operand = 0; operand < model.operands.size(); ++operand) {
207 const float invalidScale = getInvalidScale(model.operands[operand].type);
208 const std::string message = "mutateOperandScaleTest: operand " + std::to_string(operand) +
209 " has scale of " + std::to_string(invalidScale);
210 validate(device, message, model, [operand, invalidScale](Model* model) {
211 model->operands[operand].scale = invalidScale;
212 });
213 }
214}
215
216///////////////////////// VALIDATE OPERAND ZERO POINT /////////////////////////
217
218static std::vector<int32_t> getInvalidZeroPoints(OperandType type) {
219 switch (type) {
Xusong Wang7bca34b2018-12-05 14:21:51 -0800220 case OperandType::FLOAT16:
Slava Shklyaev871be942018-09-12 14:52:02 +0100221 case OperandType::FLOAT32:
222 case OperandType::INT32:
223 case OperandType::UINT32:
Lev Proleevabad9ea2018-10-01 11:18:31 +0100224 case OperandType::BOOL:
Michael K. Sanders19d63452018-10-12 09:10:15 +0100225 case OperandType::TENSOR_FLOAT16:
Slava Shklyaev871be942018-09-12 14:52:02 +0100226 case OperandType::TENSOR_FLOAT32:
227 case OperandType::TENSOR_INT32:
228 return {1};
229 case OperandType::TENSOR_QUANT8_ASYMM:
230 return {-1, 256};
Lev Proleev48c88202018-11-13 15:42:36 +0000231 case OperandType::TENSOR_QUANT16_SYMM:
232 return {-32769, -1, 1, 32768};
Slava Shklyaev871be942018-09-12 14:52:02 +0100233 default:
234 return {};
235 }
236}
237
238static void mutateOperandZeroPointTest(const sp<IDevice>& device, const Model& model) {
239 for (size_t operand = 0; operand < model.operands.size(); ++operand) {
240 const std::vector<int32_t> invalidZeroPoints =
241 getInvalidZeroPoints(model.operands[operand].type);
242 for (int32_t invalidZeroPoint : invalidZeroPoints) {
243 const std::string message = "mutateOperandZeroPointTest: operand " +
244 std::to_string(operand) + " has zero point of " +
245 std::to_string(invalidZeroPoint);
246 validate(device, message, model, [operand, invalidZeroPoint](Model* model) {
247 model->operands[operand].zeroPoint = invalidZeroPoint;
248 });
249 }
250 }
251}
252
253///////////////////////// VALIDATE EXTRA ??? /////////////////////////
254
255// TODO: Operand::lifetime
256// TODO: Operand::location
257
258///////////////////////// VALIDATE OPERATION OPERAND TYPE /////////////////////////
259
260static void mutateOperand(Operand* operand, OperandType type) {
261 Operand newOperand = *operand;
262 newOperand.type = type;
263 switch (type) {
Xusong Wang7bca34b2018-12-05 14:21:51 -0800264 case OperandType::FLOAT16:
Slava Shklyaev871be942018-09-12 14:52:02 +0100265 case OperandType::FLOAT32:
266 case OperandType::INT32:
267 case OperandType::UINT32:
Lev Proleevabad9ea2018-10-01 11:18:31 +0100268 case OperandType::BOOL:
Slava Shklyaev871be942018-09-12 14:52:02 +0100269 newOperand.dimensions = hidl_vec<uint32_t>();
270 newOperand.scale = 0.0f;
271 newOperand.zeroPoint = 0;
272 break;
Michael K. Sanders19d63452018-10-12 09:10:15 +0100273 case OperandType::TENSOR_FLOAT16:
Slava Shklyaev871be942018-09-12 14:52:02 +0100274 case OperandType::TENSOR_FLOAT32:
275 newOperand.dimensions =
276 operand->dimensions.size() > 0 ? operand->dimensions : hidl_vec<uint32_t>({1});
277 newOperand.scale = 0.0f;
278 newOperand.zeroPoint = 0;
279 break;
280 case OperandType::TENSOR_INT32:
281 newOperand.dimensions =
282 operand->dimensions.size() > 0 ? operand->dimensions : hidl_vec<uint32_t>({1});
283 newOperand.zeroPoint = 0;
284 break;
285 case OperandType::TENSOR_QUANT8_ASYMM:
Lev Proleev48c88202018-11-13 15:42:36 +0000286 case OperandType::TENSOR_QUANT16_SYMM:
Slava Shklyaev871be942018-09-12 14:52:02 +0100287 newOperand.dimensions =
288 operand->dimensions.size() > 0 ? operand->dimensions : hidl_vec<uint32_t>({1});
289 newOperand.scale = operand->scale != 0.0f ? operand->scale : 1.0f;
290 break;
291 case OperandType::OEM:
292 case OperandType::TENSOR_OEM_BYTE:
293 default:
294 break;
295 }
296 *operand = newOperand;
297}
298
Xusong Wang5b747ae2018-10-05 11:49:13 -0700299static bool mutateOperationOperandTypeSkip(size_t operand, OperandType type, const Model& model) {
300 // Do not test OEM types
301 if (type == model.operands[operand].type || type == OperandType::OEM ||
302 type == OperandType::TENSOR_OEM_BYTE) {
303 return true;
304 }
Slava Shklyaev871be942018-09-12 14:52:02 +0100305 for (const Operation& operation : model.operations) {
Xusong Wang5b747ae2018-10-05 11:49:13 -0700306 // Skip mutateOperationOperandTypeTest for the following operations.
307 // - LSH_PROJECTION's second argument is allowed to have any type.
Michael K. Sandersbbdab2f2018-11-28 10:35:08 +0000308 // - ARGMIN and ARGMAX's first argument can be any of
309 // TENSOR_(FLOAT16|FLOAT32|INT32|QUANT8_ASYMM).
310 // - CAST's argument can be any of TENSOR_(FLOAT16|FLOAT32|INT32|QUANT8_ASYMM).
Xusong Wang5b747ae2018-10-05 11:49:13 -0700311 switch (operation.type) {
312 case OperationType::LSH_PROJECTION: {
313 if (operand == operation.inputs[1]) {
314 return true;
315 }
316 } break;
317 case OperationType::CAST:
318 case OperationType::ARGMAX:
319 case OperationType::ARGMIN: {
Michael K. Sandersbbdab2f2018-11-28 10:35:08 +0000320 if (type == OperandType::TENSOR_FLOAT16 || type == OperandType::TENSOR_FLOAT32 ||
321 type == OperandType::TENSOR_INT32 || type == OperandType::TENSOR_QUANT8_ASYMM) {
Xusong Wang5b747ae2018-10-05 11:49:13 -0700322 return true;
323 }
324 } break;
325 default:
326 break;
Slava Shklyaev871be942018-09-12 14:52:02 +0100327 }
328 }
329 return false;
330}
331
332static void mutateOperationOperandTypeTest(const sp<IDevice>& device, const Model& model) {
333 for (size_t operand = 0; operand < model.operands.size(); ++operand) {
Slava Shklyaev871be942018-09-12 14:52:02 +0100334 for (OperandType invalidOperandType : hidl_enum_range<OperandType>{}) {
Xusong Wang5b747ae2018-10-05 11:49:13 -0700335 if (mutateOperationOperandTypeSkip(operand, invalidOperandType, model)) {
Slava Shklyaev871be942018-09-12 14:52:02 +0100336 continue;
337 }
338 const std::string message = "mutateOperationOperandTypeTest: operand " +
339 std::to_string(operand) + " set to type " +
340 toString(invalidOperandType);
341 validate(device, message, model, [operand, invalidOperandType](Model* model) {
342 mutateOperand(&model->operands[operand], invalidOperandType);
343 });
344 }
345 }
346}
347
348///////////////////////// VALIDATE MODEL OPERATION TYPE /////////////////////////
349
Michael K. Sandersc785d462018-10-30 15:16:54 +0000350static const uint32_t invalidOperationTypes[] = {
351 static_cast<uint32_t>(OperationTypeRange::OPERATION_FUNDAMENTAL_MIN) - 1,
352 static_cast<uint32_t>(OperationTypeRange::OPERATION_FUNDAMENTAL_MAX) + 1,
353 static_cast<uint32_t>(OperationTypeRange::OPERATION_OEM_MIN) - 1,
354 static_cast<uint32_t>(OperationTypeRange::OPERATION_OEM_MAX) + 1,
Slava Shklyaev871be942018-09-12 14:52:02 +0100355};
356
357static void mutateOperationTypeTest(const sp<IDevice>& device, const Model& model) {
358 for (size_t operation = 0; operation < model.operations.size(); ++operation) {
Michael K. Sandersc785d462018-10-30 15:16:54 +0000359 for (uint32_t invalidOperationType : invalidOperationTypes) {
Slava Shklyaev871be942018-09-12 14:52:02 +0100360 const std::string message = "mutateOperationTypeTest: operation " +
361 std::to_string(operation) + " set to value " +
362 std::to_string(invalidOperationType);
363 validate(device, message, model, [operation, invalidOperationType](Model* model) {
364 model->operations[operation].type =
365 static_cast<OperationType>(invalidOperationType);
366 });
367 }
368 }
369}
370
371///////////////////////// VALIDATE MODEL OPERATION INPUT OPERAND INDEX /////////////////////////
372
373static void mutateOperationInputOperandIndexTest(const sp<IDevice>& device, const Model& model) {
374 for (size_t operation = 0; operation < model.operations.size(); ++operation) {
375 const uint32_t invalidOperand = model.operands.size();
376 for (size_t input = 0; input < model.operations[operation].inputs.size(); ++input) {
377 const std::string message = "mutateOperationInputOperandIndexTest: operation " +
378 std::to_string(operation) + " input " +
379 std::to_string(input);
380 validate(device, message, model, [operation, input, invalidOperand](Model* model) {
381 model->operations[operation].inputs[input] = invalidOperand;
382 });
383 }
384 }
385}
386
387///////////////////////// VALIDATE MODEL OPERATION OUTPUT OPERAND INDEX /////////////////////////
388
389static void mutateOperationOutputOperandIndexTest(const sp<IDevice>& device, const Model& model) {
390 for (size_t operation = 0; operation < model.operations.size(); ++operation) {
391 const uint32_t invalidOperand = model.operands.size();
392 for (size_t output = 0; output < model.operations[operation].outputs.size(); ++output) {
393 const std::string message = "mutateOperationOutputOperandIndexTest: operation " +
394 std::to_string(operation) + " output " +
395 std::to_string(output);
396 validate(device, message, model, [operation, output, invalidOperand](Model* model) {
397 model->operations[operation].outputs[output] = invalidOperand;
398 });
399 }
400 }
401}
402
403///////////////////////// REMOVE OPERAND FROM EVERYTHING /////////////////////////
404
405static void removeValueAndDecrementGreaterValues(hidl_vec<uint32_t>* vec, uint32_t value) {
406 if (vec) {
407 // remove elements matching "value"
408 auto last = std::remove(vec->begin(), vec->end(), value);
409 vec->resize(std::distance(vec->begin(), last));
410
411 // decrement elements exceeding "value"
412 std::transform(vec->begin(), vec->end(), vec->begin(),
413 [value](uint32_t v) { return v > value ? v-- : v; });
414 }
415}
416
417static void removeOperand(Model* model, uint32_t index) {
418 hidl_vec_removeAt(&model->operands, index);
419 for (Operation& operation : model->operations) {
420 removeValueAndDecrementGreaterValues(&operation.inputs, index);
421 removeValueAndDecrementGreaterValues(&operation.outputs, index);
422 }
423 removeValueAndDecrementGreaterValues(&model->inputIndexes, index);
424 removeValueAndDecrementGreaterValues(&model->outputIndexes, index);
425}
426
Xusong Wang5b747ae2018-10-05 11:49:13 -0700427static bool removeOperandSkip(size_t operand, const Model& model) {
428 for (const Operation& operation : model.operations) {
429 // Skip removeOperandTest for the following operations.
430 // - SPLIT's outputs are not checked during prepareModel.
431 if (operation.type == OperationType::SPLIT) {
432 for (const size_t outOprand : operation.outputs) {
433 if (operand == outOprand) {
434 return true;
435 }
436 }
437 }
438 }
439 return false;
440}
441
Slava Shklyaev871be942018-09-12 14:52:02 +0100442static void removeOperandTest(const sp<IDevice>& device, const Model& model) {
443 for (size_t operand = 0; operand < model.operands.size(); ++operand) {
Xusong Wang5b747ae2018-10-05 11:49:13 -0700444 if (removeOperandSkip(operand, model)) {
445 continue;
446 }
Slava Shklyaev871be942018-09-12 14:52:02 +0100447 const std::string message = "removeOperandTest: operand " + std::to_string(operand);
448 validate(device, message, model,
449 [operand](Model* model) { removeOperand(model, operand); });
450 }
451}
452
453///////////////////////// REMOVE OPERATION /////////////////////////
454
455static void removeOperation(Model* model, uint32_t index) {
456 for (uint32_t operand : model->operations[index].inputs) {
457 model->operands[operand].numberOfConsumers--;
458 }
459 hidl_vec_removeAt(&model->operations, index);
460}
461
462static void removeOperationTest(const sp<IDevice>& device, const Model& model) {
463 for (size_t operation = 0; operation < model.operations.size(); ++operation) {
464 const std::string message = "removeOperationTest: operation " + std::to_string(operation);
465 validate(device, message, model,
466 [operation](Model* model) { removeOperation(model, operation); });
467 }
468}
469
470///////////////////////// REMOVE OPERATION INPUT /////////////////////////
471
Xusong Wang5b747ae2018-10-05 11:49:13 -0700472static bool removeOperationInputSkip(const Operation& op, size_t input) {
473 // Skip removeOperationInputTest for the following operations.
474 // - CONCATENATION has at least 2 inputs, with the last element being INT32.
475 // - CONV_2D, DEPTHWISE_CONV_2D, MAX_POOL_2D, AVERAGE_POOL_2D, L2_POOL_2D, RESIZE_BILINEAR,
476 // SPACE_TO_DEPTH, SPACE_TO_DEPTH, SPACE_TO_BATCH_ND, BATCH_TO_SPACE_ND can have an optional
477 // layout parameter.
478 // - L2_NORMALIZATION, LOCAL_RESPONSE_NORMALIZATION, SOFTMAX can have an optional axis
479 // parameter.
480 switch (op.type) {
481 case OperationType::CONCATENATION: {
482 if (op.inputs.size() > 2 && input != op.inputs.size() - 1) {
483 return true;
484 }
485 } break;
486 case OperationType::DEPTHWISE_CONV_2D: {
487 if ((op.inputs.size() == 12 && input == 11) || (op.inputs.size() == 9 && input == 8)) {
488 return true;
489 }
490 } break;
491 case OperationType::CONV_2D:
492 case OperationType::AVERAGE_POOL_2D:
493 case OperationType::MAX_POOL_2D:
494 case OperationType::L2_POOL_2D: {
495 if ((op.inputs.size() == 11 && input == 10) || (op.inputs.size() == 8 && input == 7)) {
496 return true;
497 }
498 } break;
499 case OperationType::RESIZE_BILINEAR: {
500 if (op.inputs.size() == 4 && input == 3) {
501 return true;
502 }
503 } break;
504 case OperationType::SPACE_TO_DEPTH:
505 case OperationType::DEPTH_TO_SPACE:
506 case OperationType::BATCH_TO_SPACE_ND: {
507 if (op.inputs.size() == 3 && input == 2) {
508 return true;
509 }
510 } break;
511 case OperationType::SPACE_TO_BATCH_ND: {
512 if (op.inputs.size() == 4 && input == 3) {
513 return true;
514 }
515 } break;
516 case OperationType::L2_NORMALIZATION: {
517 if (op.inputs.size() == 2 && input == 1) {
518 return true;
519 }
520 } break;
521 case OperationType::LOCAL_RESPONSE_NORMALIZATION: {
522 if (op.inputs.size() == 6 && input == 5) {
523 return true;
524 }
525 } break;
526 case OperationType::SOFTMAX: {
527 if (op.inputs.size() == 3 && input == 2) {
528 return true;
529 }
530 } break;
531 default:
532 break;
533 }
534 return false;
535}
536
Slava Shklyaev871be942018-09-12 14:52:02 +0100537static void removeOperationInputTest(const sp<IDevice>& device, const Model& model) {
538 for (size_t operation = 0; operation < model.operations.size(); ++operation) {
539 for (size_t input = 0; input < model.operations[operation].inputs.size(); ++input) {
540 const Operation& op = model.operations[operation];
Xusong Wang5b747ae2018-10-05 11:49:13 -0700541 if (removeOperationInputSkip(op, input)) {
Slava Shklyaev871be942018-09-12 14:52:02 +0100542 continue;
543 }
544 const std::string message = "removeOperationInputTest: operation " +
545 std::to_string(operation) + ", input " +
546 std::to_string(input);
547 validate(device, message, model, [operation, input](Model* model) {
548 uint32_t operand = model->operations[operation].inputs[input];
549 model->operands[operand].numberOfConsumers--;
550 hidl_vec_removeAt(&model->operations[operation].inputs, input);
551 });
552 }
553 }
554}
555
556///////////////////////// REMOVE OPERATION OUTPUT /////////////////////////
557
558static void removeOperationOutputTest(const sp<IDevice>& device, const Model& model) {
559 for (size_t operation = 0; operation < model.operations.size(); ++operation) {
560 for (size_t output = 0; output < model.operations[operation].outputs.size(); ++output) {
561 const std::string message = "removeOperationOutputTest: operation " +
562 std::to_string(operation) + ", output " +
563 std::to_string(output);
564 validate(device, message, model, [operation, output](Model* model) {
565 hidl_vec_removeAt(&model->operations[operation].outputs, output);
566 });
567 }
568 }
569}
570
571///////////////////////// MODEL VALIDATION /////////////////////////
572
573// TODO: remove model input
574// TODO: remove model output
575// TODO: add unused operation
576
577///////////////////////// ADD OPERATION INPUT /////////////////////////
578
Xusong Wang5b747ae2018-10-05 11:49:13 -0700579static bool addOperationInputSkip(const Operation& op) {
Xusong Wang64337282018-10-22 13:49:00 -0700580 // Skip addOperationInputTest for the following operations.
Xusong Wang5b747ae2018-10-05 11:49:13 -0700581 // - L2_NORMALIZATION, LOCAL_RESPONSE_NORMALIZATION, SOFTMAX can have an optional INT32 axis
582 // parameter.
583 if ((op.type == OperationType::L2_NORMALIZATION && op.inputs.size() == 1) ||
584 (op.type == OperationType::LOCAL_RESPONSE_NORMALIZATION && op.inputs.size() == 5) ||
585 (op.type == OperationType::SOFTMAX && op.inputs.size() == 2)) {
Xusong Wang64337282018-10-22 13:49:00 -0700586 return true;
587 }
588 return false;
589}
590
Slava Shklyaev871be942018-09-12 14:52:02 +0100591static void addOperationInputTest(const sp<IDevice>& device, const Model& model) {
592 for (size_t operation = 0; operation < model.operations.size(); ++operation) {
Xusong Wang64337282018-10-22 13:49:00 -0700593 if (addOperationInputSkip(model.operations[operation])) {
594 continue;
595 }
Slava Shklyaev871be942018-09-12 14:52:02 +0100596 const std::string message = "addOperationInputTest: operation " + std::to_string(operation);
597 validate(device, message, model, [operation](Model* model) {
598 uint32_t index = addOperand(model, OperandLifeTime::MODEL_INPUT);
599 hidl_vec_push_back(&model->operations[operation].inputs, index);
600 hidl_vec_push_back(&model->inputIndexes, index);
601 });
602 }
603}
604
605///////////////////////// ADD OPERATION OUTPUT /////////////////////////
606
607static void addOperationOutputTest(const sp<IDevice>& device, const Model& model) {
608 for (size_t operation = 0; operation < model.operations.size(); ++operation) {
609 const std::string message =
610 "addOperationOutputTest: operation " + std::to_string(operation);
611 validate(device, message, model, [operation](Model* model) {
612 uint32_t index = addOperand(model, OperandLifeTime::MODEL_OUTPUT);
613 hidl_vec_push_back(&model->operations[operation].outputs, index);
614 hidl_vec_push_back(&model->outputIndexes, index);
615 });
616 }
617}
618
619///////////////////////// VALIDATE EXECUTION PREFERENCE /////////////////////////
620
621static const int32_t invalidExecutionPreferences[] = {
622 static_cast<int32_t>(ExecutionPreference::LOW_POWER) - 1, // lower bound
623 static_cast<int32_t>(ExecutionPreference::SUSTAINED_SPEED) + 1, // upper bound
624};
625
626static void mutateExecutionPreferenceTest(const sp<IDevice>& device, const Model& model) {
627 for (int32_t preference : invalidExecutionPreferences) {
628 const std::string message =
629 "mutateExecutionPreferenceTest: preference " + std::to_string(preference);
630 validate(device, message, model, [](Model*) {},
631 static_cast<ExecutionPreference>(preference));
632 }
633}
634
635////////////////////////// ENTRY POINT //////////////////////////////
636
637void ValidationTest::validateModel(const Model& model) {
638 mutateOperandTypeTest(device, model);
639 mutateOperandRankTest(device, model);
640 mutateOperandScaleTest(device, model);
641 mutateOperandZeroPointTest(device, model);
642 mutateOperationOperandTypeTest(device, model);
643 mutateOperationTypeTest(device, model);
644 mutateOperationInputOperandIndexTest(device, model);
645 mutateOperationOutputOperandIndexTest(device, model);
646 removeOperandTest(device, model);
647 removeOperationTest(device, model);
648 removeOperationInputTest(device, model);
649 removeOperationOutputTest(device, model);
650 addOperationInputTest(device, model);
651 addOperationOutputTest(device, model);
652 mutateExecutionPreferenceTest(device, model);
653}
654
655} // namespace functional
656} // namespace vts
657} // namespace V1_2
658} // namespace neuralnetworks
659} // namespace hardware
660} // namespace android