12 references to ElementWiseSelect
System.Numerics.Tensors (12)
System\Numerics\Tensors\netcore\TensorPrimitives.IndexOfMax.cs (3)
48useResult |= equalMask & ElementWiseSelect(sameSign, lessThanIndexMask, currentNegative); 56result = ElementWiseSelect(useResult, result, current); 57resultIndex = ElementWiseSelect(useResult, resultIndex, currentIndex);
System\Numerics\Tensors\netcore\TensorPrimitives.IndexOfMaxMagnitude.cs (3)
46useResult |= equalMask & ElementWiseSelect(sameSign, lessThanIndexMask, currentNegative); 54result = ElementWiseSelect(useResult, result, current); 55resultIndex = ElementWiseSelect(useResult, resultIndex, currentIndex);
System\Numerics\Tensors\netcore\TensorPrimitives.IndexOfMin.cs (3)
45useResult |= equalMask & ElementWiseSelect(sameSign, lessThanIndexMask, resultNegative); 53result = ElementWiseSelect(useResult, result, current); 54resultIndex = ElementWiseSelect(useResult, resultIndex, currentIndex);
System\Numerics\Tensors\netcore\TensorPrimitives.IndexOfMinMagnitude.cs (3)
46useResult |= equalMask & ElementWiseSelect(sameSign, lessThanIndexMask, resultNegative); 54result = ElementWiseSelect(useResult, result, current); 55resultIndex = ElementWiseSelect(useResult, resultIndex, currentIndex);