| 1681 | } |
| 1682 | |
| 1683 | inline void OpKernelContext::NotifyUseOfPersistentTensor(const Tensor& t) { |
| 1684 | if (t.IsInitialized()) { |
| 1685 | record_tensor_reference(t); |
| 1686 | } |
| 1687 | } |
| 1688 | |
| 1689 | inline Tensor* OpKernelContext::mutable_output(int index) { |
| 1690 | DCHECK_GE(index, 0); |
no test coverage detected