| 17 | namespace arrayfire { |
| 18 | namespace cpu { |
| 19 | void initMersenneState(Array<uint> &state, const uintl seed, |
| 20 | const Array<uint> &tbl) { |
| 21 | getQueue().enqueue(kernel::initMersenneState, state.get(), tbl.get(), seed); |
| 22 | } |
| 23 | |
| 24 | template<typename T> |
| 25 | Array<T> uniformDistribution(const af::dim4 &dims, |
no test coverage detected