You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In .NET Core 2.0, there's a new implementation that combined Grisu3 + Dragon4 algorithms to significantly improved the performance (I should say probably 7x faster). See these two PRs: dotnet/coreclr#14646 dotnet/coreclr#12894
Replace swprintf_s with the new implementation could make the double conversion much more faster.
The text was updated successfully, but these errors were encountered:
I saw we are using library function swprintf_s to convert a double value to string, which has performance issues that have been discussed in .NET Core. See https://github.com/dotnet/coreclr/issues/10390 and https://github.com/dotnet/coreclr/issues/10651
In .NET Core 2.0, there's a new implementation that combined Grisu3 + Dragon4 algorithms to significantly improved the performance (I should say probably 7x faster). See these two PRs: dotnet/coreclr#14646
dotnet/coreclr#12894
Replace swprintf_s with the new implementation could make the double conversion much more faster.
The text was updated successfully, but these errors were encountered: