mlx_rs::ops

Function where

Source
pub fn where(
    condition: impl AsRef<Array>,
    a: impl AsRef<Array>,
    b: impl AsRef<Array>,
) -> Result<Array>
Expand description

Select from a or b according to condition returning an error if the arrays are not broadcastable.

The condition and input arrays must be the same shape or broadcasting with each another.

ยงParams

  • condition: condition array
  • a: input selected from where condition is non-zero or true
  • b: input selected from where condition is zero or false