| 284 | } |
| 285 | |
| 286 | std::vector<float> generate_torch_cuda_uniform(size_t count, uint64_t seed, uint64_t start_index) { |
| 287 | std::vector<float> output(count); |
| 288 | fill_torch_cuda_uniform(output.data(), output.size(), seed, start_index); |
| 289 | return output; |
| 290 | } |
| 291 | |
| 292 | namespace { |
| 293 |