| 452 | } |
| 453 | |
| 454 | bool MustCompileAttr(OpKernelConstruction* ctx) { |
| 455 | bool must_compile; |
| 456 | OP_REQUIRES_OK_RETURN(ctx, false, |
| 457 | ctx->GetAttr("must_compile", &must_compile)); |
| 458 | return must_compile; |
| 459 | } |
| 460 | } // namespace |
| 461 | |
| 462 | XlaLocalLaunchOp::XlaLocalLaunchOp(OpKernelConstruction* ctx) |