Counter API and Samples Updates (#410)

* Update include/rocprofiler-sdk/{counters,profile_config}.h

- use rocprofiler_agent_id_t instead of rocprofiler_agent_t

* Update samples

- use rocprofiler-sdk::rocprofiler-sdk instead of rocprofiler::rocprofiler in cmake
- api_callback_tracing sample roctxProfiler{Pause,Resume}
- api_callback_tracing sample uses ROCTx
- updates to use rocprofiler_agent_id_t

* Update run-ci.py

- exclude rocprofiler-sdk-tool from samples (no sample uses that code)

* Update lib/rocprofiler-sdk-tool/tool.cpp

- Update rocprofiler_iterate_agent_supported_counters to use agent ID

* Update lib/rocprofiler-sdk/counters/core.*

- profile_config has pointer to agent instead of copy

* Update lib/rocprofiler-sdk/agent.*

- provide get_agent(...) func via rocp agent id

* Update lib/rocprofiler-sdk/{buffer,callback}_tracing.cpp

- return ROCPROFILER_STATUS_ERROR_NOT_IMPLEMENTED for enums missing implementation

* Update lib/rocprofiler-sdk/counters.cpp

- update to use rocprofiler_agent_id_t instead of rocprofiler_agent_t

* Update lib/rocprofiler-sdk/profile_config.cpp

- update to use rocprofiler_agent_id_t instead of rocprofiler_agent_t

* Update source/docs

- requirements.txt + install reqs in cmake

* Bump version to 0.1.0

* Update samples/api_callback_tracing/CMakeLists.txt

- LD_LIBRARY_PATH for test

* Update test/rocprofv3/tracing/CMakeLists.txt

- reorder validation files so memory copy comes first

* Update lib/rocprofiler-sdk-tool/tool.cpp

- logging for flushing buffers
- variables for buffer_size and buffer_watermark
  - increase the watermark to a full buffer
- use dedicated threads for each buffer

* Update lib/rocprofiler-sdk-tool/CMakeLists.txt

- test sets ROCPROF_LOG_LEVEL and ROCPROFILER_LOG_LEVEL to info

* Remove lib/rocprofiler-sdk-tool/trace_buffer.hpp

* Update lib/rocprofiler-sdk-tool/CMakeLists.txt

- drop log level to warning when leak sanitizer is enabled (produces small memory leak)
This commit is contained in:
Jonathan R. Madsen
2024-01-25 23:47:40 -06:00
committato da GitHub
parent c641749fe6
commit 9a8b6f6b7b
27 ha cambiato i file con 341 aggiunte e 470 eliminazioni
+12 -10
Vedi File
@@ -40,25 +40,27 @@ function(DOCS_EXECUTE_PROCESS)
endif()
endfunction()
if(NOT EXISTS ${PROJECT_BINARY_DIR}/external/miniconda)
set(CONDA_ROOT ${PROJECT_BINARY_DIR}/external/miniconda)
if(NOT EXISTS ${CONDA_ROOT})
docs_execute_process(${SHELL_CMD} ${PROJECT_BINARY_DIR}/external/miniconda.sh -b -p
${PROJECT_BINARY_DIR}/external/miniconda)
docs_execute_process(${PROJECT_BINARY_DIR}/external/miniconda/bin/conda config --set
always_yes yes)
docs_execute_process(${PROJECT_BINARY_DIR}/external/miniconda/bin/conda update -c
defaults -n base conda)
${CONDA_ROOT})
docs_execute_process(${CONDA_ROOT}/bin/conda config --set always_yes yes)
docs_execute_process(${CONDA_ROOT}/bin/conda update -c defaults -n base conda)
endif()
if(NOT EXISTS ${PROJECT_BINARY_DIR}/external/miniconda/envs/rocprofiler-docs)
docs_execute_process(${PROJECT_BINARY_DIR}/external/miniconda/bin/conda env create -n
rocprofiler-docs -f ${CMAKE_CURRENT_LIST_DIR}/environment.yml)
if(NOT EXISTS ${CONDA_ROOT}/envs/rocprofiler-docs)
docs_execute_process(${CONDA_ROOT}/bin/conda env create -n rocprofiler-docs -f
${CMAKE_CURRENT_LIST_DIR}/environment.yml)
docs_execute_process(${CONDA_ROOT}/envs/rocprofiler-docs/bin/python -m pip install -r
${CMAKE_CURRENT_LIST_DIR}/requirements.txt)
endif()
file(
WRITE "${CMAKE_CURRENT_BINARY_DIR}/build-docs.sh"
"#!${SHELL_CMD} -e
PATH=${PROJECT_BINARY_DIR}/external/miniconda/bin:\${PATH}
PATH=${CONDA_ROOT}/bin:\${PATH}
export PATH
source activate
+1
Vedi File
@@ -0,0 +1 @@
doxysphinx