8 references to IsNegative
System.Numerics.Tensors (8)
System\Numerics\Tensors\netcore\TensorPrimitives.IndexOfMax.cs (2)
72
Vector256<T> currentNegative =
IsNegative
(current);
73
Vector256<T> sameSign = Vector256.Equals(
IsNegative
(result).AsInt32(), currentNegative.AsInt32()).As<int, T>();
System\Numerics\Tensors\netcore\TensorPrimitives.IndexOfMaxMagnitude.cs (2)
71
Vector256<T> currentNegative =
IsNegative
(current);
72
Vector256<T> sameSign = Vector256.Equals(
IsNegative
(result).AsInt32(), currentNegative.AsInt32()).As<int, T>();
System\Numerics\Tensors\netcore\TensorPrimitives.IndexOfMin.cs (2)
69
Vector256<T> resultNegative =
IsNegative
(result);
70
Vector256<T> sameSign = Vector256.Equals(resultNegative.AsInt32(),
IsNegative
(current).AsInt32()).As<int, T>();
System\Numerics\Tensors\netcore\TensorPrimitives.IndexOfMinMagnitude.cs (2)
71
Vector256<T> resultNegative =
IsNegative
(result);
72
Vector256<T> sameSign = Vector256.Equals(resultNegative.AsInt32(),
IsNegative
(current).AsInt32()).As<int, T>();