4 references to Double_RoundLimit
System.Numerics.Tensors (4)
System\Numerics\Tensors\netcore\TensorPrimitives.Round.cs (4)
314
T limit = typeof(T) == typeof(float) ? T.CreateTruncating(Single_RoundLimit) : T.CreateTruncating(
Double_RoundLimit
);
322
Vector128<T> limit = Vector128.Create(typeof(T) == typeof(float) ? T.CreateTruncating(Single_RoundLimit) : T.CreateTruncating(
Double_RoundLimit
));
330
Vector256<T> limit = Vector256.Create(typeof(T) == typeof(float) ? T.CreateTruncating(Single_RoundLimit) : T.CreateTruncating(
Double_RoundLimit
));
338
Vector512<T> limit = Vector512.Create(typeof(T) == typeof(float) ? T.CreateTruncating(Single_RoundLimit) : T.CreateTruncating(
Double_RoundLimit
));