| 48 | explicit SparseReshapeOpGPU(OpKernelConstruction *context) : OpKernel(context) {} |
| 49 | |
| 50 | void Compute(OpKernelContext* context) override { |
| 51 | ReshapeGPU(context, context->input(0), context->input(1), context->input(2), |
| 52 | 0 /* output indices index */, 1 /* output shape index */); |
| 53 | } |
| 54 | }; |
| 55 | |
| 56 | REGISTER_KERNEL_BUILDER(Name("SparseReshape") |
nothing calls this directly
no test coverage detected