@@ -41,7 +41,7 @@ event_instances_t *GRecordsInProgress = nullptr;
41
41
xpti::utils::timer::measurement_t GMeasure;
42
42
43
43
constexpr const char *GStreamBasic = " sycl" ;
44
- constexpr const char *GStreamPI = " sycl.pi " ;
44
+ constexpr const char *GStreamPI = " ur.call " ;
45
45
constexpr const char *GStreamMemory = " sycl.experimental.mem_alloc" ;
46
46
constexpr const char *GStreamL0 = " sycl.experimental.level_zero.call" ;
47
47
constexpr const char *GStreamCuda = " sycl.experimental.cuda.call" ;
@@ -154,7 +154,7 @@ XPTI_CALLBACK_API void graphCallback(uint16_t trace_type,
154
154
xpti::trace_event_data_t *parent,
155
155
xpti::trace_event_data_t *event,
156
156
uint64_t instance, const void *user_data);
157
- XPTI_CALLBACK_API void syclPiCallback (uint16_t trace_type,
157
+ XPTI_CALLBACK_API void syclURCallback (uint16_t trace_type,
158
158
xpti::trace_event_data_t *parent,
159
159
xpti::trace_event_data_t *event,
160
160
uint64_t instance, const void *user_data);
@@ -219,7 +219,7 @@ XPTI_CALLBACK_API void xptiTraceInit(unsigned int major_version,
219
219
// characteristics that can be encapsulated in a launcher application
220
220
//
221
221
// 1. XPTI_SYCL_PERF_OUTPUT=[json,csv,table,stack,all]
222
- // 2. XPTI_STREAMS=[all] or [sycl,sycl.pi ,sycl.perf,sycl.perf.detail,...]
222
+ // 2. XPTI_STREAMS=[all] or [sycl,ur.call ,sycl.perf,sycl.perf.detail,...]
223
223
// 3. XPTI_STDOUT_USE_COLOR=[1,0]
224
224
// 4. XPTI_IGNORE_LIST=piPlatformsGet,piProgramBuild
225
225
// 5. XPTI_SIMULATION=10,20,50,100
@@ -464,10 +464,10 @@ XPTI_CALLBACK_API void xptiTraceInit(unsigned int major_version,
464
464
auto StreamID = xptiRegisterStream (stream_name);
465
465
xptiRegisterCallback (StreamID,
466
466
(uint16_t )xpti::trace_point_type_t ::function_begin,
467
- syclPiCallback );
467
+ syclURCallback );
468
468
xptiRegisterCallback (StreamID,
469
469
(uint16_t )xpti::trace_point_type_t ::function_end,
470
- syclPiCallback );
470
+ syclURCallback );
471
471
} else if (std::string (GStreamL0) == stream_name && Check) {
472
472
auto StreamID = xptiRegisterStream (stream_name);
473
473
xptiRegisterCallback (StreamID,
@@ -909,7 +909,7 @@ XPTI_CALLBACK_API void graphMemCallback(uint16_t TraceType,
909
909
// Need to add DOT writer here
910
910
}
911
911
912
- XPTI_CALLBACK_API void syclPiCallback (uint16_t TraceType,
912
+ XPTI_CALLBACK_API void syclURCallback (uint16_t TraceType,
913
913
xpti::trace_event_data_t *Parent,
914
914
xpti::trace_event_data_t *Event,
915
915
uint64_t Instance, const void *UserData) {
0 commit comments