I have a general issue with Julia. I know there is no solution but something should be done because as it is collaborative work is hard:
The runtime of Julia programs is not stable. I don’t see fluctuations in the range of 10% but of 100%.
StaticArrays is a good example why I struggle with Julia (I come from C++ and also Lazarus).
Take for example this code:
matrix = rand(Float64, 1500, 2)
@elapsed sDataMatrix= SMatrix{1500, 2}(matrix)
This takes here 3.22 seconds.
But only at the first run. When I repeat this, it takes only 1.8e-5 seconds.
This is what I encounter all the time. My programs run at first super slow. Then I just run them again, they are very fast. For example the first plot a program makes can take up to a minute, later it is just a fraction of a second. Or the loading of a CSV file, or the generation of a tensor etc.
Then I often encounter that Julia is kind of becoming slow. When I restart it and run my program again, I measure 10% faster run times.
Or I have Julia running and run @elapsed on the same function 10 times in a row. The first run is super slow as always, then Julia becomes faster with every run. Then I run another function and subsequently the function again, it is 10, 20 or even 40 % slower than it was at its last run.
For me the bad thing is that as a physicist and engineer I really like Julia, also the plotting is great, but I must collaborate: I have to send my code to a colleague who has the same system as I have (latest Windows 10 64bit, 16 GB RAM), but he could get 50% faster runtime, or only 10 % of my runtime. Then he tries again and get different values. Or I restart Julia and everything is slow, then I restart it is faster and so on.
I am used to that I can send a program to others and the runtime they observe is stable for the and for me and also the runtime between theirs and my PC is stable. I don’t need to break speed records but need a reliable compiler that keeps run times stable.
Maybe I can compile my *.jl file in a specific way to improve the situation?
Note that I read
and also the advises in this thread
were very helpful.
but none of the improvements I achieved are stable. First after 10 subsequent runs of the same program, function or code in general, the measured @elapsed run times are stable to make code comparisons.
And comparisons across PCs are just impossible. I mean if another PC is 20 % faster with a C++ program then it is 20 % faster every day on the program code, reproducibly. But not with Julia.