| 419 | } |
| 420 | |
| 421 | void UnaryDatasetOpKernel::MakeDataset(OpKernelContext* ctx, |
| 422 | DatasetBase** output) { |
| 423 | DatasetBase* input; |
| 424 | OP_REQUIRES_OK(ctx, GetDatasetFromVariantTensor(ctx->input(0), &input)); |
| 425 | MakeDataset(ctx, input, output); |
| 426 | } |
| 427 | |
| 428 | void BinaryDatasetOpKernel::MakeDataset(OpKernelContext* ctx, |
| 429 | DatasetBase** output) { |
nothing calls this directly
no test coverage detected