TODO(dyoon): Move many helper functions in this file (including those within SymbolicShapeRefiner class) to shared utils.
| 268 | // TODO(dyoon): Move many helper functions in this file (including those within |
| 269 | // SymbolicShapeRefiner class) to shared utils. |
| 270 | bool IsEnqueue(const NodeDef& n) { |
| 271 | return (n.op().find("Enqueue") != string::npos && |
| 272 | n.op().find("EnqueueMany") == string::npos); |
| 273 | } |
| 274 | |
| 275 | bool IsDequeue(const NodeDef& n) { |
| 276 | return (n.op().find("Dequeue") != string::npos && |
no test coverage detected