6a960a1edb
For SWDEV-526556
[ROCm/rocprofiler-systems commit: b25b6cec92]
108 строки
3.9 KiB
Python
Исполняемый файл
108 строки
3.9 KiB
Python
Исполняемый файл
#!/usr/bin/env python3
|
|
|
|
# MIT License
|
|
#
|
|
# Copyright (c) 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 json
|
|
import argparse
|
|
|
|
|
|
def validate_json(data, labels, counts, depths):
|
|
expected = []
|
|
for litr, citr, ditr in zip(labels, counts, depths):
|
|
entry = []
|
|
_label = litr
|
|
if ditr > 0:
|
|
_label = "{}|_{}".format(" " * (ditr - 1), litr)
|
|
entry = [_label, citr, ditr]
|
|
expected.append(entry)
|
|
|
|
for ditr, eitr in zip(data, expected):
|
|
_prefix = ditr["prefix"]
|
|
_depth = ditr["depth"]
|
|
_count = ditr["entry"]["laps"]
|
|
_idx = _prefix.find(">>>")
|
|
if _idx is not None:
|
|
_prefix = _prefix[(_idx + 4) :]
|
|
if _prefix != eitr[0]:
|
|
raise RuntimeError(f"Mismatched prefix: {_prefix} vs. {eitr[0]}")
|
|
if _count != eitr[1]:
|
|
raise RuntimeError(f"Mismatched count for {_prefix}: {_count} vs. {eitr[1]}")
|
|
if _depth != eitr[2]:
|
|
raise RuntimeError(f"Mismatched depth for {_prefix}: {_depth} vs. {eitr[2]}")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument("-m", "--metric", type=str, help="JSON metric", required=True)
|
|
parser.add_argument(
|
|
"-l", "--labels", nargs="+", type=str, help="Expected labels", default=[]
|
|
)
|
|
parser.add_argument(
|
|
"-c", "--counts", nargs="+", type=int, help="Expected counts", default=[]
|
|
)
|
|
parser.add_argument(
|
|
"-d", "--depths", nargs="+", type=int, help="Expected depths", default=[]
|
|
)
|
|
parser.add_argument(
|
|
"-p", "--print", action="store_true", help="Print the processed perfetto data"
|
|
)
|
|
parser.add_argument("-i", "--input", type=str, help="Input file", required=True)
|
|
|
|
args = parser.parse_args()
|
|
|
|
if len(args.labels) != len(args.counts) or len(args.labels) != len(args.depths):
|
|
raise RuntimeError(
|
|
"The same number of labels, counts, and depths must be specified"
|
|
)
|
|
|
|
ret = 0
|
|
with open(args.input) as f:
|
|
data = json.load(f)
|
|
|
|
# demo display of data
|
|
if args.print:
|
|
for itr in data["timemory"][args.metric]["ranks"][0]["graph"]:
|
|
_prefix = itr["prefix"]
|
|
_depth = itr["depth"]
|
|
_count = itr["entry"]["laps"]
|
|
_idx = _prefix.find(">>>")
|
|
if _idx is not None:
|
|
_prefix = _prefix[(_idx + 4) :]
|
|
|
|
print("| {:40} | {:6} | {:6} |".format(_prefix, _count, _depth))
|
|
|
|
try:
|
|
validate_json(
|
|
data["timemory"][args.metric]["ranks"][0]["graph"],
|
|
args.labels,
|
|
args.counts,
|
|
args.depths,
|
|
)
|
|
except RuntimeError as e:
|
|
print(f"{e}")
|
|
ret = 1
|
|
if ret == 0:
|
|
print(f"{args.input} validated")
|
|
sys.exit(ret)
|