af77d93f75
- Add support for RCCL API tracing through rocprofiler-sdk. - Refactored the comm_data code to use the SDK RCCL_API callbacks. - Add a runtime version check for SDK to gate callback enablement, rather than just the compile-time check. - Fixed: SAMPLING_TIMEOUT was not being handled correctly in add_test.
12 regels
465 B
CMake
12 regels
465 B
CMake
#
|
|
set(rocprofiler_sdk_sources
|
|
${CMAKE_CURRENT_LIST_DIR}/counters.cpp ${CMAKE_CURRENT_LIST_DIR}/fwd.cpp
|
|
${CMAKE_CURRENT_LIST_DIR}/rccl.cpp)
|
|
|
|
set(rocprofiler_sdk_headers
|
|
${CMAKE_CURRENT_LIST_DIR}/counters.hpp ${CMAKE_CURRENT_LIST_DIR}/fwd.hpp
|
|
${CMAKE_CURRENT_LIST_DIR}/rccl.hpp)
|
|
|
|
target_sources(rocprofiler-systems-object-library PRIVATE ${rocprofiler_sdk_sources}
|
|
${rocprofiler_sdk_headers})
|