triton.language.where
- triton.language.where(condition, x, y, _builder=None)
Returns a tensor of elements from either
xory, depending oncondition.Note that
xandyare always evaluated regardless of the value ofcondition.If you want to avoid unintended memory operations, use the
maskarguments in triton.load and triton.store instead.The shape of
xandyare both broadcast to the shape ofcondition.xandymust have the same data type.- Parameters:
condition (Block of triton.bool) – When True (nonzero), yield x, otherwise yield y.
x – values selected at indices where condition is True.
y – values selected at indices where condition is False.