06bf110c84
* Adding counters support for strix halo * Updated coutners list * Added missing counter info * Updated arch support
139 rivejä
5.1 KiB
Python
139 rivejä
5.1 KiB
Python
#!/usr/bin/env python3
|
|
|
|
# MIT License
|
|
#
|
|
# Copyright (c) 2024-2025 Advanced Micro Devices, Inc. All rights reserved.
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in
|
|
# all copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
# THE SOFTWARE.
|
|
|
|
import sys
|
|
import pytest
|
|
import numpy as np
|
|
import pandas as pd
|
|
import re
|
|
|
|
kernel_list = sorted(
|
|
["addition_kernel", "subtract_kernel", "multiply_kernel", "divide_kernel"]
|
|
)
|
|
|
|
|
|
def unique(lst):
|
|
return list(set(lst))
|
|
|
|
|
|
def test_validate_counter_collection_pmc1(input_data: pd.DataFrame):
|
|
df = input_data
|
|
|
|
assert not df.empty
|
|
df_agent_id = df["Agent_Id"].str.split(" ").str[-1]
|
|
assert (df_agent_id.astype(int).values >= 0).all()
|
|
assert (df["Queue_Id"].astype(int).values > 0).all()
|
|
assert (df["Process_Id"].astype(int).values > 0).all()
|
|
assert len(df["Kernel_Name"]) > 0
|
|
|
|
counter_collection_pmc1_kernel_list = [
|
|
x
|
|
for x in sorted(df["Kernel_Name"].unique().tolist())
|
|
if not re.search(r"__amd_rocclr_.*", x)
|
|
]
|
|
|
|
assert kernel_list == counter_collection_pmc1_kernel_list
|
|
|
|
kernel_count = dict([[itr, 0] for itr in kernel_list])
|
|
assert len(kernel_count) == len(kernel_list)
|
|
for itr in df["Kernel_Name"]:
|
|
if re.search(r"__amd_rocclr_.*", itr):
|
|
continue
|
|
kernel_count[itr] += 1
|
|
kn_cnt = [itr for _, itr in kernel_count.items()]
|
|
assert min(kn_cnt) == max(kn_cnt) and len(unique(kn_cnt)) == 1
|
|
|
|
assert len(df["Counter_Value"]) > 0
|
|
assert df["Counter_Name"].str.contains("SQ_WAVES").all()
|
|
assert (df["Counter_Value"].astype(int).values > 0).all()
|
|
|
|
di_list = df["Dispatch_Id"].astype(int).values.tolist()
|
|
di_uniq = sorted(df["Dispatch_Id"].unique().tolist())
|
|
# make sure the dispatch ids are unique and ordered
|
|
di_expect = [idx + 1 for idx in range(len(di_list))]
|
|
assert di_expect == di_uniq
|
|
|
|
|
|
def test_validate_counter_collection_pmc1_json(json_data):
|
|
data = json_data["rocprofiler-sdk-tool"]
|
|
counter_collection_data = data["callback_records"]["counter_collection"]
|
|
dispatch_ids = []
|
|
# at present, AQLProfile has bugs when reporting the counters for below architectures
|
|
skip_gfx = ("gfx1101", "gfx1102", "gfx1150", "gfx1151")
|
|
|
|
def get_kernel_name(kernel_id):
|
|
return data["kernel_symbols"][kernel_id]["formatted_kernel_name"]
|
|
|
|
def get_agent(agent_id):
|
|
for agent in data["agents"]:
|
|
if agent["id"]["handle"] == agent_id["handle"]:
|
|
return agent
|
|
return None
|
|
|
|
def get_counter(counter_id):
|
|
for counter in data["counters"]:
|
|
if counter["id"]["handle"] == counter_id["handle"]:
|
|
return counter
|
|
return None
|
|
|
|
for counter in counter_collection_data:
|
|
dispatch_data = counter["dispatch_data"]["dispatch_info"]
|
|
|
|
assert dispatch_data["dispatch_id"] > 0
|
|
assert dispatch_data["agent_id"]["handle"] > 0
|
|
assert dispatch_data["queue_id"]["handle"] > 0
|
|
|
|
agent = get_agent(dispatch_data["agent_id"])
|
|
kernel_name = get_kernel_name(dispatch_data["kernel_id"])
|
|
|
|
assert agent is not None
|
|
assert len(kernel_name) > 0
|
|
|
|
dispatch_ids.append(dispatch_data["dispatch_id"])
|
|
if not re.search(r"__amd_rocclr_.*", kernel_name):
|
|
# Collect all SQ_WAVES values
|
|
sq_waves_values = []
|
|
for record in counter["records"]:
|
|
counter = get_counter(record["counter_id"])
|
|
assert counter is not None, f"record:\n\t{record}"
|
|
assert (
|
|
counter["name"] == "SQ_WAVES"
|
|
), f"record:\n\t{record}\ncounter:\n\t{counter}"
|
|
if agent["name"] not in skip_gfx:
|
|
sq_waves_values.append(record["value"])
|
|
|
|
# Check aggregate sum
|
|
if agent["name"] not in skip_gfx:
|
|
assert sum(sq_waves_values) > 0, "SQ_WAVES value is not > 0"
|
|
|
|
di_uniq = list(set(sorted(dispatch_ids)))
|
|
# make sure the dispatch ids are unique and ordered
|
|
di_expect = [idx + 1 for idx in range(len(dispatch_ids))]
|
|
assert di_expect == di_uniq
|
|
|
|
|
|
if __name__ == "__main__":
|
|
exit_code = pytest.main(["-x", __file__] + sys.argv[1:])
|
|
sys.exit(exit_code)
|