| 113 | Status ValidateTupleCommon(const Tuple& tuple) const; |
| 114 | |
| 115 | TensorShape ManyOutShape(int i, int64 batch_size) { |
| 116 | TensorShape shape({batch_size}); |
| 117 | shape.AppendShape(component_shapes_[i]); |
| 118 | return shape; |
| 119 | } |
| 120 | |
| 121 | void Cancel(Action action, CancellationManager* cancellation_manager, |
| 122 | CancellationToken token); |
no test coverage detected