| 67 | } // namespace |
| 68 | |
| 69 | void OptionalNoneOp::Compute(OpKernelContext* ctx) { |
| 70 | OP_REQUIRES_OK(ctx, WriteOptionalNoneToOutput(ctx, 0)); |
| 71 | } |
| 72 | |
| 73 | void OptionalFromValueOp::Compute(OpKernelContext* ctx) { |
| 74 | OpInputList components_input; |
nothing calls this directly
no test coverage detected