12 references to ElementWiseSelect
System.Numerics.Tensors (12)
System\Numerics\Tensors\netcore\TensorPrimitives.IndexOfMax.cs (3)
74useResult |= equalMask & ElementWiseSelect(sameSign, lessThanIndexMask, currentNegative); 82result = ElementWiseSelect(useResult, result, current); 83resultIndex = ElementWiseSelect(useResult, resultIndex, currentIndex);
System\Numerics\Tensors\netcore\TensorPrimitives.IndexOfMaxMagnitude.cs (3)
73useResult |= equalMask & ElementWiseSelect(sameSign, lessThanIndexMask, currentNegative); 81result = ElementWiseSelect(useResult, result, current); 82resultIndex = ElementWiseSelect(useResult, resultIndex, currentIndex);
System\Numerics\Tensors\netcore\TensorPrimitives.IndexOfMin.cs (3)
71useResult |= equalMask & ElementWiseSelect(sameSign, lessThanIndexMask, resultNegative); 79result = ElementWiseSelect(useResult, result, current); 80resultIndex = ElementWiseSelect(useResult, resultIndex, currentIndex);
System\Numerics\Tensors\netcore\TensorPrimitives.IndexOfMinMagnitude.cs (3)
73useResult |= equalMask & ElementWiseSelect(sameSign, lessThanIndexMask, resultNegative); 81result = ElementWiseSelect(useResult, result, current); 82resultIndex = ElementWiseSelect(useResult, resultIndex, currentIndex);