From 4ce7be32fb57b379f077bc140e5fd03d30a93bec Mon Sep 17 00:00:00 2001 From: coleramos425 Date: Fri, 31 May 2024 21:46:18 +0000 Subject: [PATCH] Fixing some typos from debug Signed-off-by: coleramos425 [ROCm/rocprofiler-compute commit: 55a31ef880bdf4ab36ed234b3cbbc653fa9f3cd6] --- .../tests/test_analyze_commands.py | 3 --- .../tests/test_profile_general.py | 22 ++++++------------- 2 files changed, 7 insertions(+), 18 deletions(-) diff --git a/projects/rocprofiler-compute/tests/test_analyze_commands.py b/projects/rocprofiler-compute/tests/test_analyze_commands.py index 856f4a8582..e23294f815 100644 --- a/projects/rocprofiler-compute/tests/test_analyze_commands.py +++ b/projects/rocprofiler-compute/tests/test_analyze_commands.py @@ -14,9 +14,6 @@ baseline_opts = ["omniperf", "analyze"] config = {} config["cleanup"] = True if "PYTEST_XDIST_WORKER_COUNT" in os.environ else False -indir1 = "tests/workloads/vcopy/MI100" -indir2 = "tests/workloads/vcopy/MI200" - indirs = [ "tests/workloads/vcopy/MI100", "tests/workloads/vcopy/MI200", diff --git a/projects/rocprofiler-compute/tests/test_profile_general.py b/projects/rocprofiler-compute/tests/test_profile_general.py index 5bb0546994..48dac81bbc 100644 --- a/projects/rocprofiler-compute/tests/test_profile_general.py +++ b/projects/rocprofiler-compute/tests/test_profile_general.py @@ -70,13 +70,6 @@ ALL_CSVS = sorted( "pmc_perf_7.csv", "pmc_perf_8.csv", "pmc_perf_9.csv", - "sysinfo.csv", - "timestamps.csv", - ] -) -ALL_CSVS_MI200 = sorted( - ALL_CSVS - + [ "pmc_perf_10.csv", "pmc_perf_11.csv", "pmc_perf_12.csv", @@ -84,6 +77,13 @@ ALL_CSVS_MI200 = sorted( "pmc_perf_14.csv", "pmc_perf_15.csv", "pmc_perf_16.csv", + "sysinfo.csv", + "timestamps.csv", + ] +) +ALL_CSVS_MI200 = sorted( + ALL_CSVS + + [ "pmc_perf_17.csv", "pmc_perf_18.csv", "roofline.csv", @@ -92,13 +92,6 @@ ALL_CSVS_MI200 = sorted( ALL_CSVS_MI300 = sorted( ALL_CSVS + [ - "pmc_perf_10.csv", - "pmc_perf_11.csv", - "pmc_perf_12.csv", - "pmc_perf_13.csv", - "pmc_perf_14.csv", - "pmc_perf_15.csv", - "pmc_perf_16.csv", "pmc_perf_17.csv", ] ) @@ -514,7 +507,6 @@ def test_no_roof(): if soc == "MI100": assert sorted(list(file_dict.keys())) == ALL_CSVS elif soc == "MI200": - breakpoint() assert sorted(list(file_dict.keys())) == sorted( list(filter(lambda elm: elm != "roofline.csv", ALL_CSVS_MI200)) )