| 468 | } |
| 469 | |
| 470 | XlaCompileOp::XlaCompileOp(OpKernelConstruction* ctx) |
| 471 | : OpKernel(ctx), |
| 472 | constants_(ConstantsVector(ctx)), |
| 473 | resources_(ResourcesVector(ctx)), |
| 474 | function_(FunctionAttr(ctx)), |
| 475 | platform_info_(PlatformInfoFromContext(ctx)), |
| 476 | must_compile_(MustCompileAttr(ctx)) {} |
| 477 | |
| 478 | void XlaCompileOp::Compute(OpKernelContext* ctx) { |
| 479 | VLOG(3) << "XlaCompileOp " << def().name() |
nothing calls this directly
no test coverage detected