| 273 | } |
| 274 | |
| 275 | bool IsDequeue(const NodeDef& n) { |
| 276 | return (n.op().find("Dequeue") != string::npos && |
| 277 | n.op().find("DequeueMany") == string::npos); |
| 278 | } |
| 279 | |
| 280 | bool HasAnyUnknownDimensions(const TensorShapeProto& proto) { |
| 281 | if (proto.unknown_rank()) { |
no test coverage detected