| 92 | Y_SAVELOAD_DEFINE(Seeds, Result); |
| 93 | |
| 94 | void Run(const TCudaStream& stream) const { |
| 95 | Y_ASSERT(Result.Size() < (static_cast<ui64>(1) << 32)); |
| 96 | Y_ASSERT(Result.Size() == Result.ObjectCount()); |
| 97 | NKernel::GaussianRand(Seeds.Get(), Result.Size(), Result.Get(), stream.GetStream()); |
| 98 | } |
| 99 | }; |
| 100 | } |
| 101 |
nothing calls this directly
no test coverage detected