summaryrefslogtreecommitdiff
path: root/runtimes/tests/neural_networks_test/generated/models/reshape_quant8_weights_as_inputs.model.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'runtimes/tests/neural_networks_test/generated/models/reshape_quant8_weights_as_inputs.model.cpp')
-rw-r--r--runtimes/tests/neural_networks_test/generated/models/reshape_quant8_weights_as_inputs.model.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/runtimes/tests/neural_networks_test/generated/models/reshape_quant8_weights_as_inputs.model.cpp b/runtimes/tests/neural_networks_test/generated/models/reshape_quant8_weights_as_inputs.model.cpp
new file mode 100644
index 000000000..9f6dafd10
--- /dev/null
+++ b/runtimes/tests/neural_networks_test/generated/models/reshape_quant8_weights_as_inputs.model.cpp
@@ -0,0 +1,22 @@
+// Generated file (from: reshape_quant8_weights_as_inputs.mod.py). Do not edit
+void CreateModel(Model *model) {
+ OperandType type1(Type::TENSOR_INT32, {1});
+ OperandType type0(Type::TENSOR_QUANT8_ASYMM, {1, 1, 3, 3}, 1.f, 0);
+ OperandType type2(Type::TENSOR_QUANT8_ASYMM, {9}, 1.f, 0);
+ // Phase 1, operands
+ auto op1 = model->addOperand(&type0);
+ auto op2 = model->addOperand(&type1);
+ auto op3 = model->addOperand(&type2);
+ // Phase 2, operations
+ model->addOperation(ANEURALNETWORKS_RESHAPE, {op1, op2}, {op3});
+ // Phase 3, inputs and outputs
+ model->identifyInputsAndOutputs(
+ {op1, op2},
+ {op3});
+ assert(model->isValid());
+}
+
+bool is_ignored(int i) {
+ static std::set<int> ignore = {};
+ return ignore.find(i) != ignore.end();
+}