| 1450 | using BuiltinOperator::BuiltinOperator; |
| 1451 | |
| 1452 | flatbuffers::Offset<TfLiteOptions> WriteOptions( |
| 1453 | const TocoOperator& op, |
| 1454 | flatbuffers::FlatBufferBuilder* builder) const override { |
| 1455 | auto squeeze_dims = builder->CreateVector(op.squeeze_dims); |
| 1456 | return ::tflite::CreateSqueezeOptions(*builder, squeeze_dims); |
| 1457 | } |
| 1458 | |
| 1459 | void ReadOptions(const TfLiteOptions& options, |
| 1460 | TocoOperator* op) const override { |
nothing calls this directly
no test coverage detected