Home | History | Annotate | Download | only in models
      1 // Generated file (from: lstm3_relaxed.mod.py). Do not edit
      2 void CreateModel(Model *model) {
      3   OperandType type9(Type::FLOAT32, {});
      4   OperandType type8(Type::INT32, {});
      5   OperandType type5(Type::TENSOR_FLOAT32, {0});
      6   OperandType type4(Type::TENSOR_FLOAT32, {16,20});
      7   OperandType type6(Type::TENSOR_FLOAT32, {2, 16});
      8   OperandType type7(Type::TENSOR_FLOAT32, {2, 20});
      9   OperandType type0(Type::TENSOR_FLOAT32, {2, 5});
     10   OperandType type10(Type::TENSOR_FLOAT32, {2, 80});
     11   OperandType type2(Type::TENSOR_FLOAT32, {20, 16});
     12   OperandType type1(Type::TENSOR_FLOAT32, {20, 5});
     13   OperandType type3(Type::TENSOR_FLOAT32, {20});
     14   // Phase 1, operands
     15   auto input = model->addOperand(&type0);
     16   auto input_to_input_weights = model->addOperand(&type1);
     17   auto input_to_forget_weights = model->addOperand(&type1);
     18   auto input_to_cell_weights = model->addOperand(&type1);
     19   auto input_to_output_weights = model->addOperand(&type1);
     20   auto recurrent_to_intput_weights = model->addOperand(&type2);
     21   auto recurrent_to_forget_weights = model->addOperand(&type2);
     22   auto recurrent_to_cell_weights = model->addOperand(&type2);
     23   auto recurrent_to_output_weights = model->addOperand(&type2);
     24   auto cell_to_input_weights = model->addOperand(&type3);
     25   auto cell_to_forget_weights = model->addOperand(&type3);
     26   auto cell_to_output_weights = model->addOperand(&type3);
     27   auto input_gate_bias = model->addOperand(&type3);
     28   auto forget_gate_bias = model->addOperand(&type3);
     29   auto cell_gate_bias = model->addOperand(&type3);
     30   auto output_gate_bias = model->addOperand(&type3);
     31   auto projection_weights = model->addOperand(&type4);
     32   auto projection_bias = model->addOperand(&type5);
     33   auto output_state_in = model->addOperand(&type6);
     34   auto cell_state_in = model->addOperand(&type7);
     35   auto activation_param = model->addOperand(&type8);
     36   auto cell_clip_param = model->addOperand(&type9);
     37   auto proj_clip_param = model->addOperand(&type9);
     38   auto scratch_buffer = model->addOperand(&type10);
     39   auto output_state_out = model->addOperand(&type6);
     40   auto cell_state_out = model->addOperand(&type7);
     41   auto output = model->addOperand(&type6);
     42   // Phase 2, operations
     43   static int32_t activation_param_init[] = {4};
     44   model->setOperandValue(activation_param, activation_param_init, sizeof(int32_t) * 1);
     45   static float cell_clip_param_init[] = {0.0f};
     46   model->setOperandValue(cell_clip_param, cell_clip_param_init, sizeof(float) * 1);
     47   static float proj_clip_param_init[] = {0.0f};
     48   model->setOperandValue(proj_clip_param, proj_clip_param_init, sizeof(float) * 1);
     49   model->addOperation(ANEURALNETWORKS_LSTM, {input, input_to_input_weights, input_to_forget_weights, input_to_cell_weights, input_to_output_weights, recurrent_to_intput_weights, recurrent_to_forget_weights, recurrent_to_cell_weights, recurrent_to_output_weights, cell_to_input_weights, cell_to_forget_weights, cell_to_output_weights, input_gate_bias, forget_gate_bias, cell_gate_bias, output_gate_bias, projection_weights, projection_bias, output_state_in, cell_state_in, activation_param, cell_clip_param, proj_clip_param}, {scratch_buffer, output_state_out, cell_state_out, output});
     50   // Phase 3, inputs and outputs
     51   model->identifyInputsAndOutputs(
     52     {input, input_to_input_weights, input_to_forget_weights, input_to_cell_weights, input_to_output_weights, recurrent_to_intput_weights, recurrent_to_forget_weights, recurrent_to_cell_weights, recurrent_to_output_weights, cell_to_input_weights, cell_to_forget_weights, cell_to_output_weights, input_gate_bias, forget_gate_bias, cell_gate_bias, output_gate_bias, projection_weights, projection_bias, output_state_in, cell_state_in},
     53     {scratch_buffer, output_state_out, cell_state_out, output});
     54   // Phase 4: set relaxed execution
     55   model->relaxComputationFloat32toFloat16(true);
     56   assert(model->isValid());
     57 }
     58 
     59 bool is_ignored(int i) {
     60   static std::set<int> ignore = {0};
     61   return ignore.find(i) != ignore.end();
     62 }
     63