diff --git a/examples/collector/collector.cpp b/examples/collector/collector.cpp index 910964e02c..cc9580bc4f 100644 --- a/examples/collector/collector.cpp +++ b/examples/collector/collector.cpp @@ -31,7 +31,7 @@ constexpr uint16_t TRACE_FN_BEGIN = static_cast(xpti::trace_point_type_t::function_with_args_begin); constexpr uint16_t TRACE_FN_END = static_cast(xpti::trace_point_type_t::function_with_args_end); -constexpr std::string_view UR_STREAM_NAME = "ur"; +constexpr std::string_view UR_STREAM_NAME = "ur.call"; /** * @brief Formats the function parameters and arguments for urAdapterGet diff --git a/scripts/core/INTRO.rst b/scripts/core/INTRO.rst index d2f2888b53..448e3569e2 100644 --- a/scripts/core/INTRO.rst +++ b/scripts/core/INTRO.rst @@ -161,7 +161,7 @@ Tracing Unified Runtime loader implements tracing support through the `XPTI framework `__. -.. list-table:: UR Stream `"ur"` Notification Signatures +.. list-table:: UR Stream `"ur.call"` Notification Signatures :header-rows: 1 * - Trace Point Type diff --git a/source/loader/layers/tracing/ur_tracing_layer.cpp b/source/loader/layers/tracing/ur_tracing_layer.cpp index 88aff57526..140f653ba5 100644 --- a/source/loader/layers/tracing/ur_tracing_layer.cpp +++ b/source/loader/layers/tracing/ur_tracing_layer.cpp @@ -21,7 +21,7 @@ namespace ur_tracing_layer { context_t *getContext() { return context_t::get_direct(); } -constexpr auto CALL_STREAM_NAME = "ur"; +constexpr auto CALL_STREAM_NAME = "ur.call"; constexpr auto STREAM_VER_MAJOR = UR_MAJOR_VERSION(UR_API_VERSION_CURRENT); constexpr auto STREAM_VER_MINOR = UR_MINOR_VERSION(UR_API_VERSION_CURRENT); diff --git a/test/layers/tracing/test_collector.cpp b/test/layers/tracing/test_collector.cpp index 6c942c63ec..2e412427a7 100644 --- a/test/layers/tracing/test_collector.cpp +++ b/test/layers/tracing/test_collector.cpp @@ -25,7 +25,7 @@ constexpr uint16_t TRACE_FN_BEGIN = static_cast(xpti::trace_point_type_t::function_with_args_begin); constexpr uint16_t TRACE_FN_END = static_cast(xpti::trace_point_type_t::function_with_args_end); -constexpr std::string_view UR_STREAM_NAME = "ur"; +constexpr std::string_view UR_STREAM_NAME = "ur.call"; XPTI_CALLBACK_API void trace_cb(uint16_t trace_type, xpti::trace_event_data_t *, xpti::trace_event_data_t *child, uint64_t, diff --git a/tools/urtrace/collector.cpp b/tools/urtrace/collector.cpp index 766e7c9dfe..eb8c18d164 100644 --- a/tools/urtrace/collector.cpp +++ b/tools/urtrace/collector.cpp @@ -36,7 +36,7 @@ constexpr uint16_t TRACE_FN_BEGIN = static_cast(xpti::trace_point_type_t::function_with_args_begin); constexpr uint16_t TRACE_FN_END = static_cast(xpti::trace_point_type_t::function_with_args_end); -constexpr std::string_view UR_STREAM_NAME = "ur"; +constexpr std::string_view UR_STREAM_NAME = "ur.call"; static logger::Logger out = logger::create_logger("collector", true);