We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a3c2a2 commit a9aa92aCopy full SHA for a9aa92a
JuliaExamples/examples/profiling.jl
@@ -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
19
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
34
35
36
37
38
+ f_rows()
39
40
0 commit comments