The F#.NET Journal just published an article about performance:
"The ability to convert values into legible strings efficiently, a process known as generic pretty printing, has a variety of uses including debugging and serialization. This article takes a look at the characteristics of the built-in pretty printer before considering alternatives including combinators and reflectors with a view to improving performance. Ultimately, a generic solution is proposed that runs 7,600× faster than the built-in F# solution on our test case..."
To read this article and more, subscribe to The F#.NET Journal today!
The "C++ renaissance"
-
According to Herb Sutter, C++ (and C and Fortran) are unmatched for
performance per dollar and, therefore, he believes C++ will once again top
the programm...
1 month ago
2 comments:
I take it Resize.Array slows things down?
@Art: Yes, ResizeArray (an alias for the .NET List collection) is surprisingly inefficient as an extensible array. Filling a raw array is much faster.
Post a Comment