1 // clang-format off 2 // Generated file (from: logistic_float_2.mod.py). Do not edit 3 void CreateModel(Model *model) { 4 OperandType type0(Type::TENSOR_FLOAT32, {2, 32, 40, 2}); 5 // Phase 1, operands 6 auto input = model->addOperand(&type0); 7 auto output = model->addOperand(&type0); 8 // Phase 2, operations 9 model->addOperation(ANEURALNETWORKS_LOGISTIC, {input}, {output}); 10 // Phase 3, inputs and outputs 11 model->identifyInputsAndOutputs( 12 {input}, 13 {output}); 14 assert(model->isValid()); 15 } 16 17 inline bool is_ignored(int i) { 18 static std::set<int> ignore = {}; 19 return ignore.find(i) != ignore.end(); 20 } 21 22 void CreateModel_dynamic_output_shape(Model *model) { 23 OperandType type0(Type::TENSOR_FLOAT32, {2, 32, 40, 2}); 24 OperandType type1(Type::TENSOR_FLOAT32, {0, 0, 0, 0}); 25 // Phase 1, operands 26 auto input = model->addOperand(&type0); 27 auto output = model->addOperand(&type1); 28 // Phase 2, operations 29 model->addOperation(ANEURALNETWORKS_LOGISTIC, {input}, {output}); 30 // Phase 3, inputs and outputs 31 model->identifyInputsAndOutputs( 32 {input}, 33 {output}); 34 assert(model->isValid()); 35 } 36 37 inline bool is_ignored_dynamic_output_shape(int i) { 38 static std::set<int> ignore = {}; 39 return ignore.find(i) != ignore.end(); 40 } 41 42