| 60 | namespace { |
| 61 | |
| 62 | NameAttrList FunctionAttr(OpKernelConstruction* ctx) { |
| 63 | const NameAttrList* func; |
| 64 | OP_REQUIRES_OK_RETURN(ctx, NameAttrList(), ctx->GetAttr("function", &func)); |
| 65 | return *func; |
| 66 | } |
| 67 | |
| 68 | class CgmodeExecutableClosure { |
| 69 | public: |
no test coverage detected