-
Notifications
You must be signed in to change notification settings - Fork 142
Expand file tree
/
Copy pathcompilerUtils.ts
More file actions
458 lines (393 loc) · 12.7 KB
/
Copy pathcompilerUtils.ts
File metadata and controls
458 lines (393 loc) · 12.7 KB
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
import {
BLOCKLIST_COMPILERS,
COMPILER_NAMES_TO_DISPLAY_NAMES,
PASSING_ACCURACY,
SCALE,
} from "components/benchmark/compilers/common";
import { BenchmarkData, CompilerPerformanceData } from "lib/types";
export function getPassingModels(data: CompilerPerformanceData[]) {
const models: { [k: string]: any } = {};
data.forEach((record: CompilerPerformanceData) => {
const bucket = record.granularity_bucket;
const workflowId = record.workflow_id;
const suite = record.suite;
const model = record.name;
const accuracy = record.accuracy;
// Use clear compiler name to avoid confusion about what they do
const compiler =
COMPILER_NAMES_TO_DISPLAY_NAMES[record.compiler] ?? record.compiler;
if (BLOCKLIST_COMPILERS.includes(compiler)) {
return;
}
const key = `${bucket}+${workflowId}+${suite}+${compiler}`;
if (!(key in models)) {
models[key] = new Set<string>();
}
if (PASSING_ACCURACY.includes(accuracy) || compiler === "eager") {
models[key].add(model);
}
});
return models;
}
export function isPass(
bucket: string,
workflowId: number,
suite: string,
compiler: string,
model: string,
passingModels: { [k: string]: any }
) {
return passingModels[`${bucket}+${workflowId}+${suite}+${compiler}`].has(
model
);
}
export function computePassrate(
data: CompilerPerformanceData[],
passingModels: { [k: string]: any }
) {
const totalCount: { [k: string]: any } = {};
const passCount: { [k: string]: any } = {};
const passrate: any[] = [];
data.forEach((record: CompilerPerformanceData) => {
const bucket = record.granularity_bucket;
const workflowId = record.workflow_id;
const suite = record.suite;
const model = record.name;
const accuracy = record.accuracy;
// Use clear compiler name to avoid confusion about what they do
const compiler =
COMPILER_NAMES_TO_DISPLAY_NAMES[record.compiler] ?? record.compiler;
if (BLOCKLIST_COMPILERS.includes(compiler)) {
return;
}
const key = `${bucket}+${workflowId}+${suite}+${compiler}`;
if (!(key in totalCount)) {
totalCount[key] = 0;
passCount[key] = 0;
}
// If the model pass accuracy check but fails the performance benchmark with an
// 0 speedup, it should be counted as a failure. However, `pass_due_to_skip` is
// an exception and it's ok to have 0 speedup there, also `export` is an exception
// because we only measure its pass rate but not speedup.
if (
(isPass(bucket, workflowId, suite, compiler, model, passingModels) &&
(record.speedup !== 0.0 || compiler === "export")) ||
accuracy === "pass_due_to_skip"
) {
passCount[key] += 1;
}
totalCount[key] += 1;
});
Object.keys(totalCount).forEach((key: string) => {
const pc = passCount[key];
const tc = totalCount[key];
const p = pc / tc;
const [bucket, workflowId, suite, compiler] = key.split("+");
passrate.push({
metric: "passrate",
value: p,
granularity_bucket: bucket,
workflow_id: workflowId,
suite: suite,
compiler: compiler,
passrate: p,
pass_count: pc,
total_count: tc,
passrate_display: `${(p * 100).toFixed(0)}%, ${pc}/${tc}`,
});
});
return passrate;
}
export function geomean(data: number[]) {
if (data.length === 0) {
return 0.0;
}
var gm = 1.0;
data.forEach((v) => {
gm *= v;
});
return Math.pow(gm, 1.0 / data.length).toFixed(SCALE);
}
export function computeGeomean(
data: CompilerPerformanceData[],
passingModels: { [k: string]: any }
) {
const speedup: { [k: string]: any } = {};
const returnedGeomean: any[] = [];
data.forEach((record: CompilerPerformanceData) => {
const bucket = record.granularity_bucket;
const workflowId = record.workflow_id;
const suite = record.suite;
const model = record.name;
// Use clear compiler name to avoid confusion about what they do
const compiler =
COMPILER_NAMES_TO_DISPLAY_NAMES[record.compiler] ?? record.compiler;
if (BLOCKLIST_COMPILERS.includes(compiler)) {
return;
}
const key = `${bucket}+${workflowId}+${suite}+${compiler}`;
if (!(key in speedup)) {
speedup[key] = [];
}
if (
isPass(bucket, workflowId, suite, compiler, model, passingModels) &&
record.speedup !== 0.0
) {
speedup[key].push(record.speedup);
}
});
Object.keys(speedup).forEach((key: string) => {
const gm = geomean(speedup[key]);
const [bucket, workflowId, suite, compiler] = key.split("+");
returnedGeomean.push({
metric: "geomean",
value: Number(gm),
granularity_bucket: bucket,
workflow_id: workflowId,
suite: suite,
compiler: compiler,
geomean: gm,
});
});
return returnedGeomean;
}
export function computeExecutionTime(
data: CompilerPerformanceData[],
passingModels: { [k: string]: any }
) {
const executionTime: { [k: string]: any } = {};
const returnedExecutionTime: any[] = [];
data.forEach((record: CompilerPerformanceData) => {
const bucket = record.granularity_bucket;
const workflowId = record.workflow_id;
const suite = record.suite;
const model = record.name;
const absLatency = record.abs_latency;
// Use clear compiler name to avoid confusion about what they do
const compiler =
COMPILER_NAMES_TO_DISPLAY_NAMES[record.compiler] ?? record.compiler;
if (BLOCKLIST_COMPILERS.includes(compiler)) {
return;
}
const key = `${bucket}+${workflowId}+${suite}+${compiler}`;
if (!(key in executionTime)) {
executionTime[key] = [];
}
if (
isPass(bucket, workflowId, suite, compiler, model, passingModels) &&
absLatency !== 0.0
) {
executionTime[key].push(absLatency);
}
});
Object.keys(executionTime).forEach((key: string) => {
const l = executionTime[key].length;
const m =
l !== 0
? executionTime[key].reduce(
(total: number, v: number) => total + v,
0
) / l
: 0;
const [bucket, workflowId, suite, compiler] = key.split("+");
returnedExecutionTime.push({
granularity_bucket: bucket,
workflow_id: workflowId,
suite: suite,
compiler: compiler,
abs_latency: m.toFixed(SCALE),
});
});
return returnedExecutionTime;
}
export function computeCompilationTime(
data: CompilerPerformanceData[],
passingModels: { [k: string]: any }
) {
const compTime: { [k: string]: any } = {};
const returnedCompTime: any[] = [];
data.forEach((record: CompilerPerformanceData) => {
const bucket = record.granularity_bucket;
const workflowId = record.workflow_id;
const suite = record.suite;
const model = record.name;
const compLatency = record.compilation_latency;
// Use clear compiler name to avoid confusion about what they do
const compiler =
COMPILER_NAMES_TO_DISPLAY_NAMES[record.compiler] ?? record.compiler;
if (BLOCKLIST_COMPILERS.includes(compiler)) {
return;
}
const key = `${bucket}+${workflowId}+${suite}+${compiler}`;
if (!(key in compTime)) {
compTime[key] = [];
}
if (
isPass(bucket, workflowId, suite, compiler, model, passingModels) &&
compLatency !== 0.0
) {
compTime[key].push(compLatency);
}
});
Object.keys(compTime).forEach((key: string) => {
const l = compTime[key].length;
const m =
l !== 0
? compTime[key].reduce((total: number, v: number) => total + v, 0) / l
: 0;
const [bucket, workflowId, suite, compiler] = key.split("+");
returnedCompTime.push({
metric: "compilation_latency",
granularity_bucket: bucket,
workflow_id: workflowId,
suite: suite,
compiler: compiler,
compilation_latency: m.toFixed(SCALE),
});
});
return returnedCompTime;
}
export function computeMemoryCompressionRatio(
data: CompilerPerformanceData[],
passingModels: { [k: string]: any }
) {
const memory: { [k: string]: any } = {};
const returnedMemory: any[] = [];
data.forEach((record: CompilerPerformanceData) => {
const bucket = record.granularity_bucket;
const workflowId = record.workflow_id;
const suite = record.suite;
const model = record.name;
const compRatio = record.compression_ratio;
// Use clear compiler name to avoid confusion about what they do
const compiler =
COMPILER_NAMES_TO_DISPLAY_NAMES[record.compiler] ?? record.compiler;
if (BLOCKLIST_COMPILERS.includes(compiler)) {
return;
}
const key = `${bucket}+${workflowId}+${suite}+${compiler}`;
if (!(key in memory)) {
memory[key] = [];
}
if (
isPass(bucket, workflowId, suite, compiler, model, passingModels) &&
compRatio !== 0.0
) {
memory[key].push(compRatio);
}
});
Object.keys(memory).forEach((key: string) => {
const l = memory[key].length;
const m =
l !== 0
? memory[key].reduce((total: number, v: number) => total + v, 0) / l
: 0;
const [bucket, workflowId, suite, compiler] = key.split("+");
returnedMemory.push({
metric: "compression_ratio",
value: Number(m.toFixed(SCALE)),
granularity_bucket: bucket,
workflow_id: workflowId,
suite: suite,
compiler: compiler,
compression_ratio: m.toFixed(SCALE),
});
});
return returnedMemory;
}
export function computePeakMemoryUsage(
data: CompilerPerformanceData[],
passingModels: { [k: string]: any }
) {
const memory: { [k: string]: any } = {};
const returnedMemory: any[] = [];
data.forEach((record: CompilerPerformanceData) => {
const bucket = record.granularity_bucket;
const workflowId = record.workflow_id;
const suite = record.suite;
const model = record.name;
// NB: Only need dynamo peak memory usage here to supplement the compression
// ratio metric
const dynamoPeakMem = record.dynamo_peak_mem;
// Use clear compiler name to avoid confusion about what they do
const compiler =
COMPILER_NAMES_TO_DISPLAY_NAMES[record.compiler] ?? record.compiler;
if (BLOCKLIST_COMPILERS.includes(compiler)) {
return;
}
const key = `${bucket}+${workflowId}+${suite}+${compiler}`;
if (!(key in memory)) {
memory[key] = [];
}
if (isPass(bucket, workflowId, suite, compiler, model, passingModels)) {
memory[key].push(dynamoPeakMem);
}
});
Object.keys(memory).forEach((key: string) => {
const l = memory[key].length;
const m =
memory[key].reduce((total: number, v: number) => total + v, 0) / l;
const [bucket, workflowId, suite, compiler] = key.split("+");
returnedMemory.push({
metric: "dynamo_peak_mem",
value: Number(m.toFixed(SCALE)),
granularity_bucket: bucket,
workflow_id: workflowId,
suite: suite,
compiler: compiler,
dynamo_peak_mem: m.toFixed(SCALE),
});
});
return returnedMemory;
}
// Use this function to convert the generic benchmark data to the old
// CompilerPerformanceData format. Maybe we can get rid of this once
// we have a new UX for benchmark dashboard 2.0
export function convertToCompilerPerformanceData(data: BenchmarkData[]) {
const convertData: { [model: string]: CompilerPerformanceData } = {};
if (data === undefined || data === null) {
return [];
}
const workflowBucket: { [id: number]: string } = {};
// One different in the new benchmark CI is that the results will be
// uploaded right away when the benchmark job finishes. This means
// that jobs in the same workflow could have different timestamp and
// thus, different granularity bucket. The current dashboard logic
// doesn't like that, so we will just keep the earliest timestamp here
data.forEach((r: BenchmarkData) => {
const id = r.workflow_id;
if (!(id in workflowBucket)) {
workflowBucket[id] = r.granularity_bucket;
}
});
data.forEach((r: BenchmarkData) => {
const k = `${r.workflow_id} ${r.model} ${r.backend}`;
if (!(k in convertData)) {
convertData[k] = {
abs_latency: 0,
accuracy: "",
compilation_latency: 0,
compiler: r.backend as string,
compression_ratio: 0,
dynamo_peak_mem: 0,
eager_peak_mem: 0,
granularity_bucket: workflowBucket[r.workflow_id],
name: r.model,
speedup: 0,
suite: r.suite,
workflow_id: r.workflow_id,
job_id: r.job_id,
};
}
// Accuracy metric has a string value instead of a number https://github.com/pytorch/pytorch/pull/143611
if (r.metric === "accuracy") {
convertData[k][r.metric] = JSON.parse(
r.extra_info["benchmark_values"]
)[0];
} else {
// @ts-expect-error
convertData[k][r.metric] = r.value;
}
});
return Object.values(convertData);
}