4 references to ConvertToDouble
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.ConvertHelpers.cs (1)
193public static Vector256<double> Invoke(Vector256<ulong> x) => Vector256.ConvertToDouble(x);
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
411return Vector256.ConvertToDouble(value.AsVector256()).AsVector();
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512.cs (2)
414Vector256.ConvertToDouble(vector._lower), 415Vector256.ConvertToDouble(vector._upper)