| 90 | // OpKernel ------------------------------------------------------------------ |
| 91 | |
| 92 | OpKernel::OpKernel(OpKernelConstruction* context) |
| 93 | : OpKernel(context, MakeUnique<const NodeDef>(context->def())) {} |
| 94 | |
| 95 | OpKernel::OpKernel(OpKernelConstruction* context, |
| 96 | std::unique_ptr<const NodeDef> node_def) |
nothing calls this directly
no test coverage detected