mlx.core.random.randint#
- mlx.core.random.randint(low: Union[bool, int, float, complex, object], high: Union[bool, int, float, complex, object], shape: List[int] = [], dtype: Optional[Dtype] = mlx.core.int32, key: Optional[array] = None, stream: Union[None, Stream, Device] = None) array#
Generate random integers from the given interval.
The values are sampled with equal probability from the integers in half-open interval
[low, high). The lower and upper bound can be scalars or arrays and must be roadcastable toshape.- Parameters:
- Returns:
The array of random integers.
- Return type: