2025-01-04 02:35:16 +01:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
2025-01-23 06:41:20 +05:30
|
|
|
# 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.
|
|
|
|
|
|
2025-01-04 02:35:16 +01:00
|
|
|
import itertools
|
|
|
|
|
import sys
|
|
|
|
|
import pytest
|
|
|
|
|
import numpy as np
|
|
|
|
|
import pandas as pd
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_multi_agent_support(
|
|
|
|
|
input_samples_csv: pd.DataFrame,
|
|
|
|
|
input_kernel_trace_csv: pd.DataFrame,
|
|
|
|
|
input_agent_info_csv: pd.DataFrame,
|
|
|
|
|
):
|
2025-03-21 20:40:45 +01:00
|
|
|
from rocprofiler_sdk.pc_sampling.transpose_multiple_agents.csv import (
|
|
|
|
|
validate_all_agents_are_sampled,
|
2025-01-04 02:35:16 +01:00
|
|
|
)
|
|
|
|
|
|
2025-03-21 20:40:45 +01:00
|
|
|
validate_all_agents_are_sampled(
|
|
|
|
|
input_samples_csv, input_kernel_trace_csv, input_agent_info_csv
|
|
|
|
|
)
|
2025-01-04 02:35:16 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
exit_code = pytest.main(["-x", __file__] + sys.argv[1:])
|
|
|
|
|
sys.exit(exit_code)
|