Mojo function
random_uniform
random_uniform[dtype: DType, rank: Int, //, output_fn: def[width: Int, _rank: Int](idx: IndexList[_rank], val: SIMD[dtype, width]) capturing -> None, target: StringSlice[StaticConstantOrigin]](shape: IndexList[rank], lower_bound: Scalar[dtype], upper_bound: Scalar[dtype], seed_ptr: UnsafePointer[UInt64, ImmutAnyOrigin], ctx: DeviceContextPtr)
Call output_fn with values generated from a uniform distribution on [lower_bound, upper_bound] for floating-point types or [lower_bound, upper_bound) for integer types.
Parameters:
- βdtype (
DType): The data type to generate. - βrank (
Int): The rank of the underlying buffer. - βoutput_fn (
def[width: Int, _rank: Int](idx: IndexList[_rank], val: SIMD[dtype, width]) capturing -> None): The function which stores the generated values. - βtarget (
StringSlice[StaticConstantOrigin]): The target to run on.
Args:
- βshape (
IndexList[rank]): The shape of the output being stored into by output_fn. - βlower_bound (
Scalar[dtype]): The lower bound on the uniform range. - βupper_bound (
Scalar[dtype]): The upper bound on the uniform range. - βseed_ptr (
UnsafePointer[UInt64, ImmutAnyOrigin]): Pointer to a single uint64 in device memory containing the Philox seed. - βctx (
DeviceContextPtr): The device context.
Was this page helpful?
Thank you! We'll create more content like this.
Thank you for helping us improve!