32 tflchef::Operation *operation = ctx->
chefop;
33 const tflite::Operator *op = ctx->
tflop;
35 operation->set_type(
"BatchMatMul");
37 auto op_options = operation->mutable_batch_matmul_options();
39 auto op_params = op->builtin_options_as_BatchMatMulOptions();
40 assert(op_params !=
nullptr);
42 op_options->set_adj_x(op_params->adj_x());
43 op_options->set_adj_y(op_params->adj_y());
tflchef::Operation * chefop
const tflite::Operator * tflop