| 1784 | } |
| 1785 | |
| 1786 | inline void OpOutputList::set_ref(int i, mutex* mu, Tensor* tensor_for_ref) { |
| 1787 | DCHECK_GE(i, 0); |
| 1788 | DCHECK_LT(i, stop_ - start_); |
| 1789 | ctx_->set_output_ref(i, mu, tensor_for_ref); |
| 1790 | } |
| 1791 | |
| 1792 | // Convenience macros for asserting and handling exceptional conditions. |
| 1793 | // Analogous to the CHECK* macros provided by logging.h. |
nothing calls this directly
no test coverage detected