12 references to ElementWiseSelect
System.Numerics.Tensors (12)
System\Numerics\Tensors\netcore\TensorPrimitives.IndexOfMax.cs (3)
100useResult |= equalMask & ElementWiseSelect(sameSign, lessThanIndexMask, currentNegative); 108result = ElementWiseSelect(useResult, result, current); 109resultIndex = ElementWiseSelect(useResult, resultIndex, currentIndex);
System\Numerics\Tensors\netcore\TensorPrimitives.IndexOfMaxMagnitude.cs (3)
100useResult |= equalMask & ElementWiseSelect(sameSign, lessThanIndexMask, currentNegative); 108result = ElementWiseSelect(useResult, result, current); 109resultIndex = ElementWiseSelect(useResult, resultIndex, currentIndex);
System\Numerics\Tensors\netcore\TensorPrimitives.IndexOfMin.cs (3)
97useResult |= equalMask & ElementWiseSelect(sameSign, lessThanIndexMask, resultNegative); 105result = ElementWiseSelect(useResult, result, current); 106resultIndex = ElementWiseSelect(useResult, resultIndex, currentIndex);
System\Numerics\Tensors\netcore\TensorPrimitives.IndexOfMinMagnitude.cs (3)
100useResult |= equalMask & ElementWiseSelect(sameSign, lessThanIndexMask, resultNegative); 108result = ElementWiseSelect(useResult, result, current); 109resultIndex = ElementWiseSelect(useResult, resultIndex, currentIndex);