| 446 | } |
| 447 | |
| 448 | NameAttrList FunctionAttr(OpKernelConstruction* ctx) { |
| 449 | const NameAttrList* func; |
| 450 | OP_REQUIRES_OK_RETURN(ctx, NameAttrList(), ctx->GetAttr("function", &func)); |
| 451 | return *func; |
| 452 | } |
| 453 | |
| 454 | bool MustCompileAttr(OpKernelConstruction* ctx) { |
| 455 | bool must_compile; |
no test coverage detected