-
Notifications
You must be signed in to change notification settings - Fork 142
Expand file tree
/
Copy pathSummaryGraphPanel.tsx
More file actions
433 lines (409 loc) · 11.2 KB
/
Copy pathSummaryGraphPanel.tsx
File metadata and controls
433 lines (409 loc) · 11.2 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
import { Grid, Skeleton } from "@mui/material";
import { COMMIT_TO_WORKFLOW_ID } from "components/benchmark/BranchAndCommitPicker";
import { TIME_FIELD_NAME } from "components/benchmark/common";
import { SUITES } from "components/benchmark/compilers/SuitePicker";
import {
Granularity,
seriesWithInterpolatedTimes,
TimeSeriesPanelWithData,
} from "components/metrics/panels/TimeSeriesPanel";
import dayjs from "dayjs";
import {
computeCompilationTime,
computeExecutionTime,
computeGeomean,
computeMemoryCompressionRatio,
computePassrate,
computePeakMemoryUsage,
convertToCompilerPerformanceData,
getPassingModels,
} from "lib/benchmark/compilerUtils";
import { fetcher } from "lib/GeneralUtils";
import useSWR from "swr";
const GRAPH_ROW_HEIGHT = 245;
export function GraphPanel({
queryName,
queryParams,
granularity,
suite,
branch,
lCommit,
rCommit,
}: {
queryName: string;
queryParams: { [key: string]: any };
granularity: Granularity;
suite: string;
branch: string;
lCommit: string;
rCommit: string;
}) {
// NB: I need to do multiple queries here for different suites to keep the response
// from the database small enough (<6MB) to fit into Vercel lambda limit
return (
<SuiteGraphPanel
queryName={queryName}
queryParams={queryParams}
granularity={granularity}
suite={suite}
branch={branch}
lCommit={lCommit}
rCommit={rCommit}
/>
);
}
function SuiteGraphPanel({
queryName,
queryParams,
granularity,
suite,
branch,
lCommit,
rCommit,
}: {
queryName: string;
queryParams: { [key: string]: any };
granularity: Granularity;
suite: string;
branch: string;
lCommit: string;
rCommit: string;
}) {
const queryParamsWithSuite: { [key: string]: any } = {
...queryParams,
branches: [branch],
suites: [suite],
};
// NB: Querying data for all the suites blows up the response from the database
// over the lambda reponse body limit of 6MB. So I need to split up the query
// here into multiple smaller ones to keep them under the limit
//
// See more:
// * https://nextjs.org/docs/messages/api-routes-body-size-limit
// * https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html
const url = `/api/clickhouse/${queryName}?parameters=${encodeURIComponent(
JSON.stringify(queryParamsWithSuite)
)}`;
let { data, error } = useSWR(url, fetcher, {
refreshInterval: 60 * 60 * 1000, // refresh every hour
});
if (error !== undefined) {
return (
<div>
An error occurred while fetching data, perhaps there are too many
results with your choice of time range and granularity?
</div>
);
}
if (data === undefined || data.length === 0) {
return <Skeleton variant={"rectangular"} height={"100%"} />;
}
data = convertToCompilerPerformanceData(data);
// Clamp to the nearest granularity (e.g. nearest hour) so that the times will
// align with the data we get from the database
const startTime = dayjs(queryParams["startTime"]).startOf(granularity);
const stopTime = dayjs(queryParams["stopTime"]).startOf(granularity);
// Compute the metrics for all passing models
const models = getPassingModels(data);
const groupByFieldName = "compiler";
// Only show records between these twos
const lWorkflowId = COMMIT_TO_WORKFLOW_ID[lCommit];
const rWorkflowId = COMMIT_TO_WORKFLOW_ID[rCommit];
// Accuracy
const passrate = computePassrate(data, models).filter((r: any) => {
const id = r.workflow_id;
return (
(id >= lWorkflowId && id <= rWorkflowId) ||
(id <= lWorkflowId && id >= rWorkflowId)
);
});
const passrateSeries = seriesWithInterpolatedTimes(
passrate,
startTime,
stopTime,
granularity,
groupByFieldName,
TIME_FIELD_NAME,
"passrate",
false
);
const totalModelCountSeries = seriesWithInterpolatedTimes(
passrate,
startTime,
stopTime,
granularity,
groupByFieldName,
TIME_FIELD_NAME,
"total_count",
false
);
// Geomean speedup
const geomean = computeGeomean(data, models).filter((r: any) => {
const id = r.workflow_id;
return (
(id >= lWorkflowId && id <= rWorkflowId) ||
(id <= lWorkflowId && id >= rWorkflowId)
);
});
const geomeanSeries = seriesWithInterpolatedTimes(
geomean,
startTime,
stopTime,
granularity,
groupByFieldName,
TIME_FIELD_NAME,
"geomean",
false
);
// Compilation time
const compTime = computeCompilationTime(data, models).filter((r: any) => {
const id = r.workflow_id;
return (
(id >= lWorkflowId && id <= rWorkflowId) ||
(id <= lWorkflowId && id >= rWorkflowId)
);
});
const compTimeSeries = seriesWithInterpolatedTimes(
compTime,
startTime,
stopTime,
granularity,
groupByFieldName,
TIME_FIELD_NAME,
"compilation_latency",
false
);
// Execution time
const executionTime = computeExecutionTime(data, models).filter((r: any) => {
const id = r.workflow_id;
return (
(id >= lWorkflowId && id <= rWorkflowId) ||
(id <= lWorkflowId && id >= rWorkflowId)
);
});
const executionTimeSeries = seriesWithInterpolatedTimes(
executionTime,
startTime,
stopTime,
granularity,
groupByFieldName,
TIME_FIELD_NAME,
"abs_latency",
false
);
// Memory compression ratio
const memory = computeMemoryCompressionRatio(data, models).filter(
(r: any) => {
const id = r.workflow_id;
return (
(id >= lWorkflowId && id <= rWorkflowId) ||
(id <= lWorkflowId && id >= rWorkflowId)
);
}
);
const memorySeries = seriesWithInterpolatedTimes(
memory,
startTime,
stopTime,
granularity,
groupByFieldName,
TIME_FIELD_NAME,
"compression_ratio",
false
);
// Dynamo peak memory usage
const peakMemory = computePeakMemoryUsage(data, models).filter((r: any) => {
const id = r.workflow_id;
return (
(id >= lWorkflowId && id <= rWorkflowId) ||
(id <= lWorkflowId && id >= rWorkflowId)
);
});
const peakMemorySeries = seriesWithInterpolatedTimes(
peakMemory,
startTime,
stopTime,
granularity,
groupByFieldName,
TIME_FIELD_NAME,
"dynamo_peak_mem",
false
);
return (
<Grid container spacing={2}>
<Grid size={{ xs: 12, lg: 6 }} height={GRAPH_ROW_HEIGHT}>
<TimeSeriesPanelWithData
data={passrate}
series={passrateSeries}
title={`Passrate / ${SUITES[suite]}`}
yAxisLabel={"%"}
groupByFieldName={groupByFieldName}
yAxisRenderer={(unit) => {
return `${(unit * 100).toFixed(0)} %`;
}}
additionalOptions={{
yAxis: {
scale: true,
},
label: {
show: true,
align: "left",
formatter: (r: any) => {
return (r.value[1] * 100).toFixed(0);
},
},
}}
legendPadding={310}
/>
</Grid>
<Grid size={{ xs: 12, lg: 6 }} height={GRAPH_ROW_HEIGHT}>
<TimeSeriesPanelWithData
data={passrate}
series={totalModelCountSeries}
title={`Number of Models / ${SUITES[suite]}`}
groupByFieldName={groupByFieldName}
yAxisRenderer={(unit) => {
return `${unit}`;
}}
additionalOptions={{
yAxis: {
scale: true,
},
label: {
show: true,
align: "left",
formatter: (r: any) => {
return r.value[1];
},
},
}}
legendPadding={310}
/>
</Grid>
<Grid size={{ xs: 12, lg: 6 }} height={GRAPH_ROW_HEIGHT}>
<TimeSeriesPanelWithData
data={geomean}
series={geomeanSeries}
title={`Geomean / ${SUITES[suite]}`}
groupByFieldName={groupByFieldName}
yAxisRenderer={(unit) => {
return `${unit}`;
}}
additionalOptions={{
yAxis: {
scale: true,
min: 1.0,
},
label: {
show: true,
align: "left",
formatter: (r: any) => {
return r.value[1];
},
},
}}
legendPadding={310}
/>
</Grid>
<Grid size={{ xs: 12, lg: 6 }} height={GRAPH_ROW_HEIGHT}>
<TimeSeriesPanelWithData
data={compTime}
series={compTimeSeries}
title={`Mean compilation time / ${SUITES[suite]}`}
groupByFieldName={groupByFieldName}
yAxisLabel={"second"}
yAxisRenderer={(unit) => {
return `${unit}`;
}}
additionalOptions={{
yAxis: {
scale: true,
},
label: {
show: true,
align: "left",
formatter: (r: any) => {
return Number(r.value[1]).toFixed(0);
},
},
}}
legendPadding={310}
/>
</Grid>
<Grid size={{ xs: 12, lg: 6 }} height={GRAPH_ROW_HEIGHT}>
<TimeSeriesPanelWithData
data={memory}
series={memorySeries}
title={`Peak memory footprint compression ratio / ${SUITES[suite]}`}
groupByFieldName={groupByFieldName}
yAxisRenderer={(unit) => {
return `${unit}`;
}}
additionalOptions={{
yAxis: {
scale: true,
},
label: {
show: true,
align: "left",
formatter: (r: any) => {
return r.value[1];
},
},
}}
legendPadding={310}
/>
</Grid>
<Grid size={{ xs: 12, lg: 6 }} height={GRAPH_ROW_HEIGHT}>
<TimeSeriesPanelWithData
data={peakMemory}
series={peakMemorySeries}
title={`Peak dynamo memory usage / ${SUITES[suite]}`}
groupByFieldName={groupByFieldName}
yAxisLabel={"GB"}
yAxisRenderer={(unit) => {
return `${unit}`;
}}
additionalOptions={{
yAxis: {
scale: true,
},
label: {
show: true,
align: "left",
formatter: (r: any) => {
return r.value[1];
},
},
}}
legendPadding={310}
/>
</Grid>
<Grid size={{ xs: 12, lg: 6 }} height={GRAPH_ROW_HEIGHT}>
<TimeSeriesPanelWithData
data={executionTime}
series={executionTimeSeries}
title={`Execution time / ${SUITES[suite]}`}
groupByFieldName={groupByFieldName}
yAxisLabel={"second"}
yAxisRenderer={(unit) => {
return `${unit}`;
}}
additionalOptions={{
yAxis: {
scale: true,
},
label: {
show: true,
align: "left",
formatter: (r: any) => {
return Number(r.value[1]).toFixed(0);
},
},
}}
legendPadding={310}
/>
</Grid>
</Grid>
);
}