From 19ad462abf84f4a8fca4816bf282e0c5ce2374ae Mon Sep 17 00:00:00 2001 From: Christoph Kluge Date: Fri, 16 Jun 2023 15:21:10 +0200 Subject: [PATCH] Match fixed scopeGranularity in frontend --- web/frontend/src/utils.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/web/frontend/src/utils.js b/web/frontend/src/utils.js index 67f2e1c..2112d21 100644 --- a/web/frontend/src/utils.js +++ b/web/frontend/src/utils.js @@ -183,9 +183,10 @@ export function groupByScope(jobMetrics) { const scopeGranularity = { node: 10, socket: 5, - accelerator: 5, - core: 2, - hwthread: 1, + memorydomain: 4, + core: 3, + hwthread: 2, + accelerator: 1 }; export function maxScope(scopes) {