| 128 | explicit StatefulRandomOp(OpKernelConstruction* ctx) : OpKernel(ctx) {} |
| 129 | |
| 130 | void Compute(OpKernelContext* ctx) override { |
| 131 | StatefulRandomCompute<Device>(ctx, Distribution(), 0, 1, true, 0); |
| 132 | } |
| 133 | }; |
| 134 | |
| 135 | template <typename T> |
nothing calls this directly
no test coverage detected