| 625 | XlaOpKernel::XlaOpKernel(OpKernelConstruction* context) : OpKernel(context) {} |
| 626 | |
| 627 | void XlaOpKernel::Compute(OpKernelContext* context) { |
| 628 | XlaOpKernelContext xla_context(context); |
| 629 | Compile(&xla_context); |
| 630 | } |
| 631 | |
| 632 | } // namespace tensorflow |