| 303 | } |
| 304 | |
| 305 | TF_Operation* Split3(TF_Operation* input, TF_Graph* graph, TF_Status* s, |
| 306 | const char* name) { |
| 307 | TF_Operation* op; |
| 308 | Split3Helper(input, graph, s, name, &op); |
| 309 | return op; |
| 310 | } |
| 311 | |
| 312 | bool IsPlaceholder(const tensorflow::NodeDef& node_def) { |
| 313 | if (node_def.op() != "Placeholder" || node_def.name() != "feed") { |
no test coverage detected