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