Hacker News new | ask | show | jobs
by ubj 907 days ago
For historical reasons I'm typically skeptical of claims that "TTFX" have improved. However, I just tried out Julia 1.10 and it is noticeably quicker than the last version I was using (1.8).

It takes some time to precompile packages, but once that's done I'm seeing the first plot pop up in fractions of a second.

Compliments to the Julia team! I'm looking forward to trying out this new version.

1 comments

I think v1.9 is where most of the magic happened there — packages gained the ability to list out their precompilation work during installation, which reduced compilation (and associated invalidations) at runtime.
1.10 had some substantial `using` time improvements (roughly 2-3x) from just hunting down lots of the slow parts in the compiler and fixing them.