mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-07-03 13:48:30 +00:00
31 lines
691 B
Python
31 lines
691 B
Python
# Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
"""Build trace analysis utilities."""
|
|
|
|
from .trace_parser import (
|
|
iter_trace_files,
|
|
stream_events,
|
|
load_trace_metadata,
|
|
filter_events,
|
|
get_template_events,
|
|
aggregate_by_name,
|
|
get_top_events,
|
|
extract_template_detail,
|
|
microseconds_to_seconds,
|
|
microseconds_to_milliseconds,
|
|
)
|
|
|
|
__all__ = [
|
|
"iter_trace_files",
|
|
"stream_events",
|
|
"load_trace_metadata",
|
|
"filter_events",
|
|
"get_template_events",
|
|
"aggregate_by_name",
|
|
"get_top_events",
|
|
"extract_template_detail",
|
|
"microseconds_to_seconds",
|
|
"microseconds_to_milliseconds",
|
|
]
|