Random sampling (cunumeric.random)#

Functions in cunumeric.random#

rand(d0, d1, ..., dn)

Random values in a given shape.

randint(low[, high, size, dtype])

Return random integers from low (inclusive) to high (exclusive).

randn(d0, d1, ..., dn)

Return a sample (or samples) from the "standard normal" distribution.

random([size])

Return random floats in the half-open interval [0.0, 1.0).

seed([init])