Returns true if this is a custom op.
| 539 | |
| 540 | // Returns true if this is a custom op. |
| 541 | bool IsCustomOp(const std::string& op_name) { |
| 542 | return op_name == "tfl.max_pooling_with_argmax_2d" || |
| 543 | op_name == "tfl.max_unpooling_2d" || |
| 544 | op_name == "tfl.convolution_2d_transpose_bias"; |
| 545 | } |
| 546 | |
| 547 | // TODO(krzysd) Handle function calls |
| 548 | StatusOr<Operation*> ConvertOp( |