| 45 | } |
| 46 | |
| 47 | bool IsTensorIdRegular(const TensorId& tensor_id) { |
| 48 | return tensor_id.index() > Graph::kControlSlot; |
| 49 | } |
| 50 | |
| 51 | bool IsTensorIdControlling(const TensorId& tensor_id) { |
| 52 | return tensor_id.index() == Graph::kControlSlot; |
no test coverage detected