Skip to content

Latest commit

 

History

History
45 lines (28 loc) · 1.22 KB

12_performance.md

File metadata and controls

45 lines (28 loc) · 1.22 KB

Performance tuning in Julia

Slow code can be written in any language

Julia concepts

BenchmarkTools.jl

Use the $ trick with the @btime macro:

a = rand(5)
@btime sin.($a)

Julia resources

Exercise

Take your Game of Life code and improve its performance.

If you did not code a solution, take the one here