Is possible to store the time displayed with @time in a variable ?
For example the following code
for i in 1:10
@time my_function(i)
end
displays the wall time of my function my_function, but I would like to store the number of milliseconds in an array instead, in order to display it in a plot showing the evolution of the execution time regarding the parameter i.