IMPORTANT: To view this page as Markdown, append `.md` to the URL (e.g. /max/get-started.md). For the complete documentation index, see llms.txt.
Skip to main content
For the complete documentation index, see llms.txt. Markdown versions of all pages are available by appending .md to any URL (e.g. /max/get-started.md).

Mojo function

random_uniform

def random_uniform[dtype: DType, rank: Int, //, output_fn: def[width: SIMDSize, _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: DeviceContext)

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: SIMDSize, _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: