| 41 | namespace { |
| 42 | |
| 43 | bool IsTensorIdPortValid(const TensorId& tensor_id) { |
| 44 | return tensor_id.index() >= Graph::kControlSlot; |
| 45 | } |
| 46 | |
| 47 | bool IsTensorIdRegular(const TensorId& tensor_id) { |
| 48 | return tensor_id.index() > Graph::kControlSlot; |
no test coverage detected