| 275 | const int OpKernelContext::Params::kNoReservation; |
| 276 | |
| 277 | OpKernelContext::OpKernelContext(Params* params) |
| 278 | : OpKernelContext( |
| 279 | params, static_cast<int>(params->op_kernel->output_types().size())) {} |
| 280 | |
| 281 | OpKernelContext::OpKernelContext(Params* params, int num_outputs) |
| 282 | : params_(params), |
nothing calls this directly
no test coverage detected