From d4b910d359c0f4451b2a385518158acb94a0101f Mon Sep 17 00:00:00 2001 From: Jose Santos Date: Fri, 23 Feb 2024 17:42:52 -0600 Subject: [PATCH] updating Baseline workload directory Signed-off-by: Jose Santos --- tests/test_profile_general.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_profile_general.py b/tests/test_profile_general.py index 06a8a256af..5ec04a666d 100644 --- a/tests/test_profile_general.py +++ b/tests/test_profile_general.py @@ -258,11 +258,11 @@ def gpu_soc(): gpu_id = list(filter(soc_regex.match, rocminfo))[0].split()[1] if gpu_id == "gfx906": - return "mi50" + return "MI50" elif gpu_id == "gfx908": - return "mi100" + return "MI100" elif gpu_id == "gfx90a": - return "mi200" + return "MI200" elif gpu_id == "gfx900": return "vega10" else: @@ -273,7 +273,7 @@ def gpu_soc(): soc = gpu_soc() -Baseline_dir = os.path.realpath("tests/workloads/Baseline_vcopy_" + soc) +Baseline_dir = os.path.realpath("tests/workloads/vcopy" + soc) def log_counter(file_dict, test_name):