f91f0712f7
* Fix for gfx12 s_wait_idle. Added wait field on att.csv
* Format and default to ATT to trace
* Update .mds
* No fatal error for invalid agent
* Tidy fixes
* Rename wait to idle, removed uneeded headers
* Remove unused traceID
* Tidy fix
* Fix csv output
* Formatting
* Fix tests
* Fix tests
* Fix for visible devices
* Review comment: Fix cmake
* Review suggestion
* Remove changelog/readme
* Review comments
* Review comment for CSV
* Formatting
---------
Co-authored-by: Giovanni Baraldi <gbaraldi@amd.com>
[ROCm/rocprofiler-sdk commit: a8f3397069]
37 lines
1017 B
CMake
37 lines
1017 B
CMake
#
|
|
# ATT decoder wrapper library for use by the rocprofv3 tool
|
|
#
|
|
set(ATT_TOOL_SOURCE_FILES
|
|
waitcnt/analysis.cpp
|
|
waitcnt/gfx9.cpp
|
|
waitcnt/gfx10.cpp
|
|
waitcnt/gfx12.cpp
|
|
att_lib_wrapper.cpp
|
|
wave.cpp
|
|
code.cpp
|
|
filenames.cpp
|
|
occupancy.cpp
|
|
wstates.cpp
|
|
perfcounter.cpp
|
|
profile_interface.cpp
|
|
dl.cpp)
|
|
|
|
add_library(rocprofiler-sdk-att-parser STATIC)
|
|
add_library(rocprofiler-sdk::rocprofiler-sdk-att-parser ALIAS rocprofiler-sdk-att-parser)
|
|
target_sources(rocprofiler-sdk-att-parser PRIVATE ${ATT_TOOL_SOURCE_FILES})
|
|
|
|
target_link_libraries(
|
|
rocprofiler-sdk-att-parser
|
|
PRIVATE rocprofiler-sdk::rocprofiler-sdk-headers
|
|
rocprofiler-sdk::rocprofiler-sdk-json
|
|
rocprofiler-sdk::rocprofiler-sdk-common-library
|
|
rocprofiler-sdk::rocprofiler-sdk-amd-comgr
|
|
rocprofiler-sdk::rocprofiler-sdk-dw
|
|
rocprofiler-sdk::rocprofiler-sdk-elf)
|
|
|
|
add_subdirectory(waitcnt)
|
|
|
|
if(ROCPROFILER_BUILD_TESTS)
|
|
add_subdirectory(tests)
|
|
endif()
|