@@ -77,44 +77,44 @@ class XPTIRegistry {
7777 xptiFrameworkInitialize ();
7878 // Register the streams that we will be using
7979 // SYCL events
80- GSYCLStreamID =
80+ detail:: GSYCLStreamID =
8181 this ->initializeStream (SYCL_STREAM_NAME, GMajVer, GMinVer, GVerStr);
8282 // SYCL buffer events
83- GBufferStreamID = this ->initializeStream (SYCL_BUFFER_STREAM_NAME, GMajVer,
84- GMinVer, GVerStr);
83+ detail:: GBufferStreamID = this ->initializeStream (
84+ SYCL_BUFFER_STREAM_NAME, GMajVer, GMinVer, GVerStr);
8585 // SYCL image events
86- GImageStreamID = this ->initializeStream (SYCL_IMAGE_STREAM_NAME, GMajVer,
87- GMinVer, GVerStr);
86+ detail:: GImageStreamID = this ->initializeStream (
87+ SYCL_IMAGE_STREAM_NAME, GMajVer, GMinVer, GVerStr);
8888 // Memory allocation events
89- GMemAllocStreamID = this ->initializeStream (SYCL_MEM_ALLOC_STREAM_NAME,
90- GMajVer, GMinVer, GVerStr);
89+ detail:: GMemAllocStreamID = this ->initializeStream (
90+ SYCL_MEM_ALLOC_STREAM_NAME, GMajVer, GMinVer, GVerStr);
9191 // UR API events
92- GUrApiStreamID =
92+ detail:: GUrApiStreamID =
9393 this ->initializeStream (UR_API_STREAM_NAME, GMajVer, GMinVer, GVerStr);
9494
9595 auto SYCLEventTP = xptiCreateTracepoint (" sycl.application.graph" , nullptr ,
9696 0 , 0 , nullptr );
97- GSYCLGraphEvent = SYCLEventTP->event_ref ();
98- if (GSYCLGraphEvent) {
97+ detail:: GSYCLGraphEvent = SYCLEventTP->event_ref ();
98+ if (detail:: GSYCLGraphEvent) {
9999 // The graph event is a global event and will be used as the parent for
100100 // all nodes (command groups, memory allocations, etc)
101- xptiNotifySubscribers (GSYCLStreamID, xpti::trace_graph_create, nullptr ,
102- GSYCLGraphEvent, GSYCLGraphEvent-> instance_id ,
103- nullptr );
101+ xptiNotifySubscribers (detail:: GSYCLStreamID, xpti::trace_graph_create,
102+ nullptr , detail:: GSYCLGraphEvent,
103+ detail::GSYCLGraphEvent-> instance_id , nullptr );
104104 }
105105 auto MemAllocEventTP =
106106 xptiCreateTracepoint (" sycl.memory.alloc" , nullptr , 0 , 0 , nullptr );
107- GMemAllocEvent = MemAllocEventTP->event_ref ();
107+ detail:: GMemAllocEvent = MemAllocEventTP->event_ref ();
108108
109109 // We capture all API calls in a single event, so that we can minimize
110110 // XPTI infra calls
111111 auto APIEventTP =
112112 xptiCreateTracepoint (" api.function" , nullptr , 0 , 0 , nullptr );
113- GApiEvent = APIEventTP->event_ref ();
113+ detail:: GApiEvent = APIEventTP->event_ref ();
114114
115115 auto SYCLExceptionsTP =
116116 xptiCreateTracepoint (" sycl.exceptions" , nullptr , 0 , 0 , nullptr );
117- GSYCLCallEvent = SYCLExceptionsTP->event_ref ();
117+ detail:: GSYCLCallEvent = SYCLExceptionsTP->event_ref ();
118118 });
119119#endif
120120 }
0 commit comments