| 1741 | } |
| 1742 | |
| 1743 | inline mutex* OpMutableInputList::ref_mutex(int i) { |
| 1744 | DCHECK_GE(i, 0); |
| 1745 | DCHECK_LT(i, stop_ - start_); |
| 1746 | return ctx_->input_ref_mutex(start_ + i); |
| 1747 | } |
| 1748 | |
| 1749 | inline Tensor OpMutableInputList::at(int i, bool lock_held) { |
| 1750 | DCHECK_GE(i, 0); |
nothing calls this directly
no test coverage detected