On Monday, February 23, 2015 at 9:08:46 PM UTC-6, Aero_flux wrote: > > Restarting Julia, adding functions and running @time gives a longer > elapsed time for both. Rerunning @time returns tiny values. >
The first time you run a Julia method with a given set of argument types, you incur the cost of compilation. On subsequent invocations, you get cached, already compiled code. Patrick
