From 9587e842d3885f736746993d8abdda3e58000ea6 Mon Sep 17 00:00:00 2001 From: Karl W Schulz Date: Thu, 4 Jan 2024 15:32:34 -0600 Subject: [PATCH] ci debugging Signed-off-by: Karl W Schulz --- tests/test_profile_general.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_profile_general.py b/tests/test_profile_general.py index 1492628cf7..1e2d09ba23 100644 --- a/tests/test_profile_general.py +++ b/tests/test_profile_general.py @@ -236,6 +236,7 @@ def gpu_soc(): ).stdout.decode("ascii") ) rocminfo = rocminfo.split("\n") + print(rocminfo) soc_regex = re.compile(r"^\s*Name\s*:\s+ ([a-zA-Z0-9]+)\s*$", re.MULTILINE) gpu_id = list(filter(soc_regex.match, rocminfo))[0].split()[1]