| 146 | Y_SAVELOAD_DEFINE(Seeds, Result); |
| 147 | |
| 148 | void Run(const TCudaStream& stream) const { |
| 149 | Y_ASSERT(Result.Size() < (static_cast<ui64>(1) << 32)); |
| 150 | Y_ASSERT(Result.Size() == Result.ObjectCount()); |
| 151 | NKernel::UniformRand(Seeds.Get(), Result.Size(), Result.Get(), stream.GetStream()); |
| 152 | } |
| 153 | }; |
| 154 | } |
| 155 |
nothing calls this directly
no test coverage detected