b98c3c8b86
--------- Co-authored-by: David Galiffi <David.Galiffi@amd.com>
95 lines
4.0 KiB
CMake
95 lines
4.0 KiB
CMake
# 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.
|
|
|
|
# -------------------------------------------------------------------------------------- #
|
|
#
|
|
# NIC performance tests
|
|
#
|
|
# -------------------------------------------------------------------------------------- #
|
|
|
|
# Get the name of the default NIC and write it to _network_interface.
|
|
execute_process(
|
|
COMMAND "${CMAKE_SOURCE_DIR}/tests/get_default_nic.sh"
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
OUTPUT_VARIABLE _network_interface)
|
|
|
|
message(STATUS "Default network interface is ${_network_interface}")
|
|
|
|
set(_nic_perf_environment
|
|
"${_base_environment}"
|
|
"ROCPROFSYS_OUTPUT_PATH=${PROJECT_BINARY_DIR}/rocprof-sys-tests-output/nic-performance"
|
|
"ROCPROFSYS_USE_PID=OFF"
|
|
"ROCPROFSYS_VERBOSE=1"
|
|
"ROCPROFSYS_USE_PROCESS_SAMPLING=OFF"
|
|
"ROCPROFSYS_SAMPLING_FREQ=50"
|
|
"ROCPROFSYS_SAMPLING_CPUS=none"
|
|
"ROCPROFSYS_USE_ROCM=OFF"
|
|
"ROCPROFSYS_TIMEMORY_COMPONENTS=wall_clock,papi_array,network_stats"
|
|
"ROCPROFSYS_NETWORK_INTERFACE=${_network_interface}"
|
|
"ROCPROFSYS_PAPI_EVENTS=net:::${_network_interface}:tx:byte net:::${_network_interface}:rx:byte net:::${_network_interface}:rx:packet net:::${_network_interface}:tx:packet"
|
|
"ROCPROFSYS_SAMPLING_DELAY=0.05")
|
|
|
|
# Set _download_url to a large file that will give rocprof-sys-sample time to collect NIC
|
|
# performance data.
|
|
set(_download_url
|
|
"https://github.com/llvm/llvm-project/releases/download/llvmorg-20.1.0/clang+llvm-20.1.0-armv7a-linux-gnueabihf.tar.gz"
|
|
)
|
|
|
|
# Run the NIC performance test
|
|
add_test(
|
|
NAME nic-performance
|
|
COMMAND $<TARGET_FILE:rocprofiler-systems-sample> -- wget --no-check-certificate
|
|
${_download_url} -O /tmp/rocprofiler-systems.test.bin
|
|
WORKING_DIRECTORY ${PROJECT_BINARY_DIR})
|
|
|
|
set_tests_properties(nic-performance PROPERTIES ENVIRONMENT "${_nic_perf_environment}"
|
|
TIMEOUT 120 LABELS "network")
|
|
|
|
# Validate the perfetto file generated from NIC performance test output
|
|
add_test(
|
|
NAME validate-nic-performance-perfetto
|
|
COMMAND
|
|
${ROCPROFSYS_VALIDATION_PYTHON}
|
|
${CMAKE_CURRENT_LIST_DIR}/validate-perfetto-proto.py -i
|
|
${PROJECT_BINARY_DIR}/rocprof-sys-tests-output/nic-performance/perfetto-trace.proto
|
|
--counter-names rx:byte rx:packet tx:byte tx:packet -t
|
|
/opt/trace_processor/bin/trace_processor_shell -p
|
|
WORKING_DIRECTORY ${PROJECT_BINARY_DIR})
|
|
|
|
set(_test_pass_regex
|
|
"rocprof-sys-tests-output/nic-performance/perfetto-trace.proto validated")
|
|
set(_test_fail_regex
|
|
"Failure validating rocprof-sys-tests-output/nic-performance/perfetto-trace.proto")
|
|
|
|
set_tests_properties(
|
|
validate-nic-performance-perfetto
|
|
PROPERTIES TIMEOUT
|
|
30
|
|
LABELS
|
|
"network"
|
|
DEPENDS
|
|
nic-performance
|
|
PASS_REGULAR_EXPRESSION
|
|
${_test_pass_regex}
|
|
FAIL_REGULAR_EXPRESSION
|
|
${_test_fail_regex})
|