bb69467765
* Renamed agent profiling service to device counting service
Name more aptly represents what agent profiling did (device wide
counter collection). Conversion of existing user code can be
performed by the following find/sed command:
find . -type f -exec sed -i 's/rocprofiler_agent_profile_callback_t/rocprofiler_device_counting_service_callback_t/g; s/rocprofiler_configure_agent_profile_counting_service/rocprofiler_configure_device_counting_service/g; s/agent_profile.h/device_counting_service.h/g; s/rocprofiler_sample_agent_profile_counting_service/rocprofiler_sample_device_counting_service/g' {} +
* Converted dispatch profile to dispatch counting service
* Debug for functioal counters test
* Minor changes for CI
* Minor fix
* More fixes for CI
* Update evaluate_ast.cpp
---------
Co-authored-by: Benjamin Welton <ben@amd.com>
17 lines
649 B
CMake
17 lines
649 B
CMake
set(ROCPROFILER_LIB_COUNTERS_SOURCES
|
|
metrics.cpp dimensions.cpp evaluate_ast.cpp core.cpp id_decode.cpp
|
|
dispatch_handlers.cpp controller.cpp device_counting.cpp)
|
|
set(ROCPROFILER_LIB_COUNTERS_HEADERS
|
|
metrics.hpp dimensions.hpp evaluate_ast.hpp core.hpp id_decode.hpp
|
|
dispatch_handlers.hpp controller.hpp device_counting.hpp)
|
|
target_sources(rocprofiler-object-library PRIVATE ${ROCPROFILER_LIB_COUNTERS_SOURCES}
|
|
${ROCPROFILER_LIB_COUNTERS_HEADERS})
|
|
|
|
add_subdirectory(xml)
|
|
add_subdirectory(parser)
|
|
add_subdirectory(yaml)
|
|
|
|
if(ROCPROFILER_BUILD_TESTS)
|
|
add_subdirectory(tests)
|
|
endif()
|