From 074be2b2be9403cfadfd99a87965bc09b6ef5a6b Mon Sep 17 00:00:00 2001 From: Andi Kleen Date: Thu, 18 Apr 2024 16:17:48 -0700 Subject: [PATCH] toplev: Update metric groups in big core models --- adl_glc_ratios.py | 6 +++--- bdw_client_ratios.py | 6 +++--- bdx_server_ratios.py | 8 ++++---- clx_server_ratios.py | 8 ++++---- hsw_client_ratios.py | 6 +++--- hsx_server_ratios.py | 8 ++++---- icl_client_ratios.py | 6 +++--- icx_server_ratios.py | 8 ++++---- ivb_client_ratios.py | 6 +++--- ivb_server_ratios.py | 8 ++++---- jkt_server_ratios.py | 4 ++-- skl_client_ratios.py | 6 +++--- skx_server_ratios.py | 8 ++++---- snb_client_ratios.py | 2 +- spr_max_server_ratios.py | 8 ++++---- spr_server_ratios.py | 8 ++++---- 16 files changed, 53 insertions(+), 53 deletions(-) diff --git a/adl_glc_ratios.py b/adl_glc_ratios.py index 794adfba..bf5ade9a 100644 --- a/adl_glc_ratios.py +++ b/adl_glc_ratios.py @@ -1618,7 +1618,7 @@ class FB_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW']) + metricgroup = frozenset(['BvMB', 'MemoryBW']) maxval = None def compute(self, EV): try: @@ -1780,7 +1780,7 @@ class SQ_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: @@ -1828,7 +1828,7 @@ class MEM_Bandwidth: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: diff --git a/bdw_client_ratios.py b/bdw_client_ratios.py index 6a1e9d1a..e4bab74a 100644 --- a/bdw_client_ratios.py +++ b/bdw_client_ratios.py @@ -1201,7 +1201,7 @@ class FB_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW']) + metricgroup = frozenset(['BvMB', 'MemoryBW']) maxval = None def compute(self, EV): try: @@ -1363,7 +1363,7 @@ class SQ_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: @@ -1411,7 +1411,7 @@ class MEM_Bandwidth: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: diff --git a/bdx_server_ratios.py b/bdx_server_ratios.py index 7a55edc1..2aa3370e 100644 --- a/bdx_server_ratios.py +++ b/bdx_server_ratios.py @@ -1233,7 +1233,7 @@ class FB_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW']) + metricgroup = frozenset(['BvMB', 'MemoryBW']) maxval = None def compute(self, EV): try: @@ -1395,7 +1395,7 @@ class SQ_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: @@ -1443,7 +1443,7 @@ class MEM_Bandwidth: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: @@ -3592,7 +3592,7 @@ def compute(self, EV): class Metric_Uncore_Frequency: name = "Uncore_Frequency" - domain = "" + domain = "SystemMetric" maxval = 0 errcount = 0 area = "Info.System" diff --git a/clx_server_ratios.py b/clx_server_ratios.py index 04517706..91a8c399 100644 --- a/clx_server_ratios.py +++ b/clx_server_ratios.py @@ -1684,7 +1684,7 @@ class FB_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW']) + metricgroup = frozenset(['BvMB', 'MemoryBW']) maxval = None def compute(self, EV): try: @@ -1846,7 +1846,7 @@ class SQ_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: @@ -1894,7 +1894,7 @@ class MEM_Bandwidth: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: @@ -5317,7 +5317,7 @@ def compute(self, EV): class Metric_Uncore_Frequency: name = "Uncore_Frequency" - domain = "" + domain = "SystemMetric" maxval = 0 errcount = 0 area = "Info.System" diff --git a/hsw_client_ratios.py b/hsw_client_ratios.py index b24bf58f..ee5cc582 100644 --- a/hsw_client_ratios.py +++ b/hsw_client_ratios.py @@ -1052,7 +1052,7 @@ class FB_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW']) + metricgroup = frozenset(['BvMB', 'MemoryBW']) maxval = None def compute(self, EV): try: @@ -1214,7 +1214,7 @@ class SQ_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: @@ -1262,7 +1262,7 @@ class MEM_Bandwidth: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: diff --git a/hsx_server_ratios.py b/hsx_server_ratios.py index 29ad7ea2..e454dd91 100644 --- a/hsx_server_ratios.py +++ b/hsx_server_ratios.py @@ -1084,7 +1084,7 @@ class FB_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW']) + metricgroup = frozenset(['BvMB', 'MemoryBW']) maxval = None def compute(self, EV): try: @@ -1246,7 +1246,7 @@ class SQ_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: @@ -1294,7 +1294,7 @@ class MEM_Bandwidth: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: @@ -2999,7 +2999,7 @@ def compute(self, EV): class Metric_Uncore_Frequency: name = "Uncore_Frequency" - domain = "" + domain = "SystemMetric" maxval = 0 errcount = 0 area = "Info.System" diff --git a/icl_client_ratios.py b/icl_client_ratios.py index c3a7d3d9..b47740c1 100644 --- a/icl_client_ratios.py +++ b/icl_client_ratios.py @@ -1675,7 +1675,7 @@ class FB_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW']) + metricgroup = frozenset(['BvMB', 'MemoryBW']) maxval = None def compute(self, EV): try: @@ -1837,7 +1837,7 @@ class SQ_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: @@ -1885,7 +1885,7 @@ class MEM_Bandwidth: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: diff --git a/icx_server_ratios.py b/icx_server_ratios.py index 673718a6..fb8d920f 100644 --- a/icx_server_ratios.py +++ b/icx_server_ratios.py @@ -1726,7 +1726,7 @@ class FB_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW']) + metricgroup = frozenset(['BvMB', 'MemoryBW']) maxval = None def compute(self, EV): try: @@ -1888,7 +1888,7 @@ class SQ_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: @@ -1936,7 +1936,7 @@ class MEM_Bandwidth: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: @@ -5406,7 +5406,7 @@ def compute(self, EV): class Metric_Uncore_Frequency: name = "Uncore_Frequency" - domain = "" + domain = "SystemMetric" maxval = 0 errcount = 0 area = "Info.System" diff --git a/ivb_client_ratios.py b/ivb_client_ratios.py index 495dc1f6..23d909e0 100644 --- a/ivb_client_ratios.py +++ b/ivb_client_ratios.py @@ -1085,7 +1085,7 @@ class FB_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW']) + metricgroup = frozenset(['BvMB', 'MemoryBW']) maxval = None def compute(self, EV): try: @@ -1247,7 +1247,7 @@ class SQ_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: @@ -1295,7 +1295,7 @@ class MEM_Bandwidth: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: diff --git a/ivb_server_ratios.py b/ivb_server_ratios.py index a321a9b3..d794164d 100644 --- a/ivb_server_ratios.py +++ b/ivb_server_ratios.py @@ -1117,7 +1117,7 @@ class FB_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW']) + metricgroup = frozenset(['BvMB', 'MemoryBW']) maxval = None def compute(self, EV): try: @@ -1279,7 +1279,7 @@ class SQ_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: @@ -1327,7 +1327,7 @@ class MEM_Bandwidth: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: @@ -3219,7 +3219,7 @@ def compute(self, EV): class Metric_Uncore_Frequency: name = "Uncore_Frequency" - domain = "" + domain = "SystemMetric" maxval = 0 errcount = 0 area = "Info.System" diff --git a/jkt_server_ratios.py b/jkt_server_ratios.py index ca9197a2..b4d57d6c 100644 --- a/jkt_server_ratios.py +++ b/jkt_server_ratios.py @@ -735,7 +735,7 @@ class MEM_Bandwidth: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: @@ -1507,7 +1507,7 @@ def compute(self, EV): class Metric_Uncore_Frequency: name = "Uncore_Frequency" - domain = "" + domain = "SystemMetric" maxval = 0 errcount = 0 area = "Info.System" diff --git a/skl_client_ratios.py b/skl_client_ratios.py index 61bbdf65..9d194f7f 100644 --- a/skl_client_ratios.py +++ b/skl_client_ratios.py @@ -1624,7 +1624,7 @@ class FB_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW']) + metricgroup = frozenset(['BvMB', 'MemoryBW']) maxval = None def compute(self, EV): try: @@ -1786,7 +1786,7 @@ class SQ_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: @@ -1834,7 +1834,7 @@ class MEM_Bandwidth: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: diff --git a/skx_server_ratios.py b/skx_server_ratios.py index 8137f5d0..5c3d8193 100644 --- a/skx_server_ratios.py +++ b/skx_server_ratios.py @@ -1645,7 +1645,7 @@ class FB_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW']) + metricgroup = frozenset(['BvMB', 'MemoryBW']) maxval = None def compute(self, EV): try: @@ -1807,7 +1807,7 @@ class SQ_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: @@ -1855,7 +1855,7 @@ class MEM_Bandwidth: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: @@ -5206,7 +5206,7 @@ def compute(self, EV): class Metric_Uncore_Frequency: name = "Uncore_Frequency" - domain = "" + domain = "SystemMetric" maxval = 0 errcount = 0 area = "Info.System" diff --git a/snb_client_ratios.py b/snb_client_ratios.py index a78c893b..77e9247c 100644 --- a/snb_client_ratios.py +++ b/snb_client_ratios.py @@ -723,7 +723,7 @@ class MEM_Bandwidth: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: diff --git a/spr_max_server_ratios.py b/spr_max_server_ratios.py index 8687f88b..205ec425 100644 --- a/spr_max_server_ratios.py +++ b/spr_max_server_ratios.py @@ -1721,7 +1721,7 @@ class FB_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW']) + metricgroup = frozenset(['BvMB', 'MemoryBW']) maxval = None def compute(self, EV): try: @@ -1883,7 +1883,7 @@ class SQ_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: @@ -1954,7 +1954,7 @@ class MEM_Bandwidth: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: @@ -5817,7 +5817,7 @@ def compute(self, EV): class Metric_Uncore_Frequency: name = "Uncore_Frequency" - domain = "" + domain = "SystemMetric" maxval = 0 errcount = 0 area = "Info.System" diff --git a/spr_server_ratios.py b/spr_server_ratios.py index 08631bba..711d2cb3 100644 --- a/spr_server_ratios.py +++ b/spr_server_ratios.py @@ -1731,7 +1731,7 @@ class FB_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW']) + metricgroup = frozenset(['BvMB', 'MemoryBW']) maxval = None def compute(self, EV): try: @@ -1893,7 +1893,7 @@ class SQ_Full: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: @@ -1941,7 +1941,7 @@ class MEM_Bandwidth: sample = [] errcount = 0 sibling = None - metricgroup = frozenset(['BvMS', 'MemoryBW', 'Offcore']) + metricgroup = frozenset(['BvMB', 'MemoryBW', 'Offcore']) maxval = None def compute(self, EV): try: @@ -5831,7 +5831,7 @@ def compute(self, EV): class Metric_Uncore_Frequency: name = "Uncore_Frequency" - domain = "" + domain = "SystemMetric" maxval = 0 errcount = 0 area = "Info.System"