We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a8896b commit 78d4650Copy full SHA for 78d4650
site/frontend/src/pages/compare/compile/common.ts
@@ -67,6 +67,7 @@ export interface CompileBenchmarkMetadata {
67
binary: boolean | null;
68
iterations: number | null;
69
release_profile: CargoProfileMetadata;
70
+ dev_profile: CargoProfileMetadata;
71
}
72
73
export interface CompileBenchmarkComparison {
site/frontend/src/pages/compare/compile/comparisons-table.vue
@@ -86,6 +86,8 @@ Category: ${metadata.category}
86
};
87
if (testCase.profile === "opt" && metadata.release_profile !== null) {
88
addMetadata(metadata.release_profile);
89
+ } else if (testCase.profile === "debug" && metadata.dev_profile !== null) {
90
+ addMetadata(metadata.dev_profile);
91
92
93
return tooltip;
0 commit comments