Construct MLX scalars
Usage
mlx_scalar(value, dtype = NULL, device = mlx_default_device())Arguments
- value
Single value (numeric, logical, or complex).
- dtype
Optional MLX dtype. Defaults to
"float32"for numeric input,"bool"for logical, and"complex64"for complex.- device
Execution target: supply
"gpu","cpu", or anmlx_streamcreated viamlx_new_stream(). Defaults to the currentmlx_default_device()unless noted otherwise (helpers that act on an existing array typically reuse that array's device or stream).