1 // clang-format off 2 // Generated file (from: space_to_batch.mod.py). Do not edit 3 void CreateModel(Model *model) { 4 OperandType type0(Type::TENSOR_FLOAT32, {1, 2, 2, 2}); 5 OperandType type1(Type::TENSOR_INT32, {2}); 6 OperandType type2(Type::TENSOR_INT32, {2, 2}); 7 OperandType type3(Type::TENSOR_FLOAT32, {4, 1, 1, 2}); 8 // Phase 1, operands 9 auto input = model->addOperand(&type0); 10 auto block_size = model->addOperand(&type1); 11 auto paddings = model->addOperand(&type2); 12 auto output = model->addOperand(&type3); 13 // Phase 2, operations 14 static int32_t block_size_init[] = {2, 2}; 15 model->setOperandValue(block_size, block_size_init, sizeof(int32_t) * 2); 16 static int32_t paddings_init[] = {0, 0, 0, 0}; 17 model->setOperandValue(paddings, paddings_init, sizeof(int32_t) * 4); 18 model->addOperation(ANEURALNETWORKS_SPACE_TO_BATCH_ND, {input, block_size, paddings}, {output}); 19 // Phase 3, inputs and outputs 20 model->identifyInputsAndOutputs( 21 {input}, 22 {output}); 23 assert(model->isValid()); 24 } 25 26 inline bool is_ignored(int i) { 27 static std::set<int> ignore = {}; 28 return ignore.find(i) != ignore.end(); 29 } 30 31 void CreateModel_dynamic_output_shape(Model *model) { 32 OperandType type0(Type::TENSOR_FLOAT32, {1, 2, 2, 2}); 33 OperandType type1(Type::TENSOR_INT32, {2}); 34 OperandType type2(Type::TENSOR_INT32, {2, 2}); 35 OperandType type4(Type::TENSOR_FLOAT32, {0, 0, 0, 0}); 36 // Phase 1, operands 37 auto input = model->addOperand(&type0); 38 auto block_size = model->addOperand(&type1); 39 auto paddings = model->addOperand(&type2); 40 auto output = model->addOperand(&type4); 41 // Phase 2, operations 42 static int32_t block_size_init[] = {2, 2}; 43 model->setOperandValue(block_size, block_size_init, sizeof(int32_t) * 2); 44 static int32_t paddings_init[] = {0, 0, 0, 0}; 45 model->setOperandValue(paddings, paddings_init, sizeof(int32_t) * 4); 46 model->addOperation(ANEURALNETWORKS_SPACE_TO_BATCH_ND, {input, block_size, paddings}, {output}); 47 // Phase 3, inputs and outputs 48 model->identifyInputsAndOutputs( 49 {input}, 50 {output}); 51 assert(model->isValid()); 52 } 53 54 inline bool is_ignored_dynamic_output_shape(int i) { 55 static std::set<int> ignore = {}; 56 return ignore.find(i) != ignore.end(); 57 } 58 59