Skip to content

Commit a9aa92a

Browse files
committed
profiling in Julia
1 parent 6a3c2a2 commit a9aa92a

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

JuliaExamples/examples/profiling.jl

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
using Profile
2+
using LinearAlgebra
3+
4+
5+
n = 5
6+
matrix = diagm(ones(5))
7+
X = randn((10, 5))
8+
9+
10+
function f_matrix()
11+
X * matrix
12+
:ok
13+
end
14+
15+
16+
function f_rows()
17+
Ref(matrix) .* eachrow(X)
18+
:ok
19+
end
20+
21+
22+
f_matrix()
23+
24+
25+
f_rows()
26+
27+
28+
29+
@timev begin
30+
for i in 1:100
31+
f_matrix()
32+
end
33+
end
34+
35+
36+
@timev begin
37+
for i in 1:100
38+
f_rows()
39+
end
40+
end

0 commit comments

Comments
 (0)