| 515 | } |
| 516 | |
| 517 | void XlaOpKernelContext::SetTensorListOutput(int index, |
| 518 | const xla::XlaOp& handle) { |
| 519 | SetOutputExpression(index, XlaExpression::TensorList(handle)); |
| 520 | } |
| 521 | |
| 522 | void XlaOpKernelContext::SetResourceOutput(int index, XlaResource* resource) { |
| 523 | SetOutputExpression(index, XlaExpression::Resource(resource)); |
no test coverage detected