32 tflchef::Operation *operation = ctx->
chefop;
33 const tflite::Operator *op = ctx->
tflop;
35 auto op_params = op->builtin_options_as_PackOptions();
36 assert(op_params !=
nullptr);
38 operation->set_type(
"Pack");
40 auto op_options = operation->mutable_pack_options();
42 op_options->set_axis(op_params->axis());
43 op_options->set_values_count(op_params->values_count());
tflchef::Operation * chefop
const tflite::Operator * tflop