-
Notifications
You must be signed in to change notification settings - Fork 3
/
JuliaMain.jl
234 lines (209 loc) · 5.97 KB
/
JuliaMain.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
println("started")
# ]add BenchmarkTools
# ]add MAT
using BenchmarkTools # for benchmark
const BenchmarkTools.DEFAULT_PARAMETERS.samples = 700;
const BenchmarkTools.DEFAULT_PARAMETERS.evals = 1;
using DelimitedFiles # for readdlm, writedlm
using Statistics # for median
using LinearAlgebra # for eigen, pinv, svd, cholesky
using Random # for randperm
using MAT
const operationMode = 2; # 0 for test only # 1 for partial benchmark # 2 for full benchmark
const saveData = true; # true for saving Runtimes to csv and mat
const JuliaFlag = true; # run Julia benchmark
const JuliaSIMDFlag = true; # run Julia SIMD benchmark
const debugging = false;
if BLAS.vendor() == :mkl
# MKL
### Julia
if JuliaFlag
include("JuliaBench.jl")
tRunTime, mRunTime = JuliaBench(operationMode)
if saveData
# Main RunTime Table write
writedlm(
joinpath(
"RunTimeData",
"RunTimeJulia$(BLAS.vendor())Table.csv",
),
tRunTime,
',',
)
# RunTime save
file = matopen(
joinpath("RunTimeData", "RunTimeJulia$(BLAS.vendor()).mat"),
"w",
)
write(file, "mRunTime", mRunTime)
close(file)
end
end
### Julia SIMD
if JuliaSIMDFlag
include("JuliaBenchSIMD.jl")
tRunTime, mRunTime = JuliaBenchSIMD(operationMode)
if saveData
# Main RunTime Table write
writedlm(
joinpath(
"RunTimeData",
"RunTimeJulia$(BLAS.vendor())SIMDTable.csv",
),
tRunTime,
',',
)
# RunTime save
file = matopen(
joinpath("RunTimeData", "RunTimeJulia$(BLAS.vendor())SIMD.mat"),
"w",
)
write(file, "mRunTime", mRunTime)
close(file)
end
end
else
# openBLAS
## BLAS threads = 1
BLAS.set_num_threads(1)
### Julia
if JuliaFlag
include("JuliaBench.jl")
tRunTime, mRunTime = JuliaBench(operationMode)
if saveData
# Main RunTime Table write
writedlm(
joinpath(
"RunTimeData",
"RunTimeJulia$(BLAS.vendor())Table.csv",
),
tRunTime,
',',
)
# RunTime save
file = matopen(
joinpath("RunTimeData", "RunTimeJulia$(BLAS.vendor()).mat"),
"w",
)
write(file, "mRunTime", mRunTime)
close(file)
end
end
### Julia SIMD
if JuliaSIMDFlag
include("JuliaBenchSIMD.jl")
tRunTime, mRunTime = JuliaBenchSIMD(operationMode)
if saveData
# Main RunTime Table write
writedlm(
joinpath(
"RunTimeData",
"RunTimeJulia$(BLAS.vendor())SIMDTable.csv",
),
tRunTime,
',',
)
# RunTime save
file = matopen(
joinpath("RunTimeData", "RunTimeJulia$(BLAS.vendor())SIMD.mat"),
"w",
)
write(file, "mRunTime", mRunTime)
close(file)
end
end
## BLAS threads = 4
BLAS.set_num_threads(4)
### Julia
if JuliaFlag
include("JuliaBench.jl")
tRunTime, mRunTime = JuliaBench(operationMode)
if saveData
# Main RunTime Table write
writedlm(
joinpath(
"RunTimeData",
"RunTimeJulia$(BLAS.vendor())Table_4Thread.csv",
),
tRunTime,
',',
)
# RunTime save
file = matopen(
joinpath(
"RunTimeData",
"RunTimeJulia$(BLAS.vendor())_4Thread.mat",
),
"w",
)
write(file, "mRunTime", mRunTime)
close(file)
end
end
### Julia SIMD
if JuliaSIMDFlag
include("JuliaBenchSIMD.jl")
tRunTime, mRunTime = JuliaBenchSIMD(operationMode)
if saveData
# Main RunTime Table write
writedlm(
joinpath(
"RunTimeData",
"RunTimeJulia$(BLAS.vendor())SIMDTable_4Thread.csv",
),
tRunTime,
',',
)
# RunTime save
file = matopen(
joinpath(
"RunTimeData",
"RunTimeJulia$(BLAS.vendor())SIMD_4Thread.mat",
),
"w",
)
write(file, "mRunTime", mRunTime)
close(file)
end
end
end
if debugging
# Debug and performance trace
include("JuliaBench.jl")
matrixSize = 20
mX = randn(matrixSize, matrixSize)
mY = randn(matrixSize, matrixSize)
allFunctions = [
MatrixGeneration,
MatrixAddition,
MatrixMultiplication,
MatrixQuadraticForm,
MatrixReductions,
ElementWiseOperations,
MatrixExp,
MatrixSqrt,
Svd,
Eig,
CholDec,
MatInv,
LinearSystem,
LeastSquares,
CalcDistanceMatrix,
KMeans,
]
# debug the code
# Juno.@enter allFunctions[2](matrixSize, mX, mY) # copy paste to REPL
# timing and memory
@time allFunctions[2](matrixSize, mX, mY)
# bad practices used in coding
# Juno.@trace allFunctions[1](matrixSize, mX, mY)
# profiles the code
# using Profile
# Profile.clear();
# @profile allFunctions[2](matrixSize, mX, mY)
# Profile.print(combine = true)
# profiletree=Juno.profiletree()
# Juno.profiler()
# advanced tool for diagnosing type-related problems
# @code_warntype allFunctions[2](matrixSize, mX, mY)
end