8 references to IsNegative
System.Numerics.Tensors (8)
System\Numerics\Tensors\netcore\TensorPrimitives.IndexOfMax.cs (2)
46
Vector128<T> currentNegative =
IsNegative
(current);
47
Vector128<T> sameSign = Vector128.Equals(
IsNegative
(result).AsInt32(), currentNegative.AsInt32()).As<int, T>();
System\Numerics\Tensors\netcore\TensorPrimitives.IndexOfMaxMagnitude.cs (2)
44
Vector128<T> currentNegative =
IsNegative
(current);
45
Vector128<T> sameSign = Vector128.Equals(
IsNegative
(result).AsInt32(), currentNegative.AsInt32()).As<int, T>();
System\Numerics\Tensors\netcore\TensorPrimitives.IndexOfMin.cs (2)
43
Vector128<T> resultNegative =
IsNegative
(result);
44
Vector128<T> sameSign = Vector128.Equals(resultNegative.AsInt32(),
IsNegative
(current).AsInt32()).As<int, T>();
System\Numerics\Tensors\netcore\TensorPrimitives.IndexOfMinMagnitude.cs (2)
44
Vector128<T> resultNegative =
IsNegative
(result);
45
Vector128<T> sameSign = Vector128.Equals(resultNegative.AsInt32(),
IsNegative
(current).AsInt32()).As<int, T>();