summaryrefslogtreecommitdiff
path: root/runtimes/tests/neural_networks_test/generated/models/tensorflowmax_ex_2D_int32.model.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'runtimes/tests/neural_networks_test/generated/models/tensorflowmax_ex_2D_int32.model.cpp')
-rw-r--r--runtimes/tests/neural_networks_test/generated/models/tensorflowmax_ex_2D_int32.model.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/runtimes/tests/neural_networks_test/generated/models/tensorflowmax_ex_2D_int32.model.cpp b/runtimes/tests/neural_networks_test/generated/models/tensorflowmax_ex_2D_int32.model.cpp
new file mode 100644
index 000000000..efb5923ae
--- /dev/null
+++ b/runtimes/tests/neural_networks_test/generated/models/tensorflowmax_ex_2D_int32.model.cpp
@@ -0,0 +1,24 @@
+// Generated file (from: tensorflowmax_ex_2D_int32.mod.py). Do not edit
+void CreateModel(Model *model) {
+ OperandType type1(Type::INT32, {});
+ OperandType type0(Type::TENSOR_INT32, {3, 4});
+ OperandType type2(Type::TENSOR_INT32, {3});
+ // Phase 1, operands
+ auto input = model->addOperand(&type0);
+ auto axis = model->addOperand(&type1);
+ auto output = model->addOperand(&type2);
+ // Phase 2, operations
+ static int32_t axis_init[] = {1};
+ model->setOperandValue(axis, axis_init, sizeof(int32_t) * 1);
+ model->addOperationEx(ANEURALNETWORKS_TENSORFLOW_MAX_EX, {input, axis}, {output});
+ // Phase 3, inputs and outputs
+ model->identifyInputsAndOutputs(
+ {input},
+ {output});
+ assert(model->isValid());
+}
+
+bool is_ignored(int i) {
+ static std::set<int> ignore = {};
+ return ignore.find(i) != ignore.end();
+}