| 1753 | } |
| 1754 | |
| 1755 | inline Tensor* OpOutputList::operator[](int i) { |
| 1756 | DCHECK_GE(i, 0); |
| 1757 | DCHECK_LT(i, stop_ - start_); |
| 1758 | return ctx_->mutable_output(start_ + i); |
| 1759 | } |
| 1760 | |
| 1761 | inline bool OpOutputList::required(int i) const { |
| 1762 | DCHECK_GE(i, 0); |
nothing calls this directly
no test coverage detected