julialangHow to measure execution time in JuliaLang?
Measuring execution time in JuliaLang is easy and straightforward. The @time
macro can be used to measure the execution time of any expression. For example:
@time begin
x = rand(1000, 1000)
y = rand(1000, 1000)
z = x * y
end
The output of the above code will be:
0.001445 seconds (1.02 k allocations: 52.906 KiB)
The @time
macro measures the total execution time of the expression, including the time taken for memory allocation. It also prints the number of allocations and the amount of memory allocated.
The @elapsed
macro can also be used to measure the execution time of an expression. It is similar to @time
but does not print the number of allocations and the amount of memory allocated.
Helpful links
More of Julialang
- How to use tuples in JuliaLang?
- How to work with rational numbers in JuliaLang?
- How to test code in JuliaLang?
- How to add a legend to a plot in JuliaLang?
- How to use enums in JuliaLang?
- How to use channels in JuliaLang?
- How to sort in JuliaLang?
- How to get JuliaLang version?
- How to use regular expressions in JuliaLang?
See more codes...