File: sanitizer_runtime_cbid.h

package info (click to toggle)
nvidia-cuda-toolkit 12.4.1-2
  • links: PTS, VCS
  • area: non-free
  • in suites: forky, trixie
  • size: 18,505,836 kB
  • sloc: ansic: 203,477; cpp: 64,769; python: 34,699; javascript: 22,006; xml: 13,410; makefile: 3,085; sh: 2,343; perl: 352
file content (471 lines) | stat: -rw-r--r-- 45,046 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471

// *************************************************************************
//      Definitions of indices for API functions, unique across entire API
// *************************************************************************

// This file is generated.  Any changes you make will be lost during the next clean build.
// CUDA public interface, for type definitions and cu* function prototypes

#ifndef __SANITIZER_RUNTIME_CBID_H
#define __SANITIZER_RUNTIME_CBID_H


typedef enum SANITIZER_CBID_RUNTIME_API_enum {
    SANITIZER_CBID_RUNTIME_API_INVALID                                                     = 0,
    SANITIZER_CBID_RUNTIME_API_cudaDriverGetVersion                                        = 1,
    SANITIZER_CBID_RUNTIME_API_cudaRuntimeGetVersion                                       = 2,
    SANITIZER_CBID_RUNTIME_API_cudaGetDeviceCount                                          = 3,
    SANITIZER_CBID_RUNTIME_API_cudaGetDeviceProperties                                     = 4,
    SANITIZER_CBID_RUNTIME_API_cudaChooseDevice                                            = 5,
    SANITIZER_CBID_RUNTIME_API_cudaGetChannelDesc                                          = 6,
    SANITIZER_CBID_RUNTIME_API_cudaCreateChannelDesc                                       = 7,
    SANITIZER_CBID_RUNTIME_API_cudaGetLastError                                            = 10,
    SANITIZER_CBID_RUNTIME_API_cudaPeekAtLastError                                         = 11,
    SANITIZER_CBID_RUNTIME_API_cudaGetErrorString                                          = 12,
    SANITIZER_CBID_RUNTIME_API_cudaFuncSetCacheConfig                                      = 14,
    SANITIZER_CBID_RUNTIME_API_cudaFuncGetAttributes                                       = 15,
    SANITIZER_CBID_RUNTIME_API_cudaSetDevice                                               = 16,
    SANITIZER_CBID_RUNTIME_API_cudaGetDevice                                               = 17,
    SANITIZER_CBID_RUNTIME_API_cudaSetValidDevices                                         = 18,
    SANITIZER_CBID_RUNTIME_API_cudaSetDeviceFlags                                          = 19,
    SANITIZER_CBID_RUNTIME_API_cudaMalloc                                                  = 20,
    SANITIZER_CBID_RUNTIME_API_cudaMallocPitch                                             = 21,
    SANITIZER_CBID_RUNTIME_API_cudaFree                                                    = 22,
    SANITIZER_CBID_RUNTIME_API_cudaMallocArray                                             = 23,
    SANITIZER_CBID_RUNTIME_API_cudaFreeArray                                               = 24,
    SANITIZER_CBID_RUNTIME_API_cudaMallocHost                                              = 25,
    SANITIZER_CBID_RUNTIME_API_cudaFreeHost                                                = 26,
    SANITIZER_CBID_RUNTIME_API_cudaHostAlloc                                               = 27,
    SANITIZER_CBID_RUNTIME_API_cudaHostGetDevicePointer                                    = 28,
    SANITIZER_CBID_RUNTIME_API_cudaHostGetFlags                                            = 29,
    SANITIZER_CBID_RUNTIME_API_cudaMemGetInfo                                              = 30,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpy                                                  = 31,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpy2D                                                = 32,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpyToArray                                           = 33,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpy2DToArray                                         = 34,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpyFromArray                                         = 35,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpy2DFromArray                                       = 36,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpyArrayToArray                                      = 37,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpy2DArrayToArray                                    = 38,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpyToSymbol                                          = 39,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpyFromSymbol                                        = 40,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpyAsync                                             = 41,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpyToArrayAsync                                      = 42,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpyFromArrayAsync                                    = 43,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpy2DAsync                                           = 44,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpy2DToArrayAsync                                    = 45,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpy2DFromArrayAsync                                  = 46,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpyToSymbolAsync                                     = 47,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpyFromSymbolAsync                                   = 48,
    SANITIZER_CBID_RUNTIME_API_cudaMemset                                                  = 49,
    SANITIZER_CBID_RUNTIME_API_cudaMemset2D                                                = 50,
    SANITIZER_CBID_RUNTIME_API_cudaMemsetAsync                                             = 51,
    SANITIZER_CBID_RUNTIME_API_cudaMemset2DAsync                                           = 52,
    SANITIZER_CBID_RUNTIME_API_cudaGetSymbolAddress                                        = 53,
    SANITIZER_CBID_RUNTIME_API_cudaGetSymbolSize                                           = 54,
    SANITIZER_CBID_RUNTIME_API_cudaBindTexture                                             = 55,
    SANITIZER_CBID_RUNTIME_API_cudaBindTexture2D                                           = 56,
    SANITIZER_CBID_RUNTIME_API_cudaBindTextureToArray                                      = 57,
    SANITIZER_CBID_RUNTIME_API_cudaUnbindTexture                                           = 58,
    SANITIZER_CBID_RUNTIME_API_cudaGetTextureAlignmentOffset                               = 59,
    SANITIZER_CBID_RUNTIME_API_cudaGetTextureReference                                     = 60,
    SANITIZER_CBID_RUNTIME_API_cudaBindSurfaceToArray                                      = 61,
    SANITIZER_CBID_RUNTIME_API_cudaGetSurfaceReference                                     = 62,
    SANITIZER_CBID_RUNTIME_API_cudaGLSetGLDevice                                           = 63,
    SANITIZER_CBID_RUNTIME_API_cudaGLRegisterBufferObject                                  = 64,
    SANITIZER_CBID_RUNTIME_API_cudaGLMapBufferObject                                       = 65,
    SANITIZER_CBID_RUNTIME_API_cudaGLUnmapBufferObject                                     = 66,
    SANITIZER_CBID_RUNTIME_API_cudaGLUnregisterBufferObject                                = 67,
    SANITIZER_CBID_RUNTIME_API_cudaGLSetBufferObjectMapFlags                               = 68,
    SANITIZER_CBID_RUNTIME_API_cudaGLMapBufferObjectAsync                                  = 69,
    SANITIZER_CBID_RUNTIME_API_cudaGLUnmapBufferObjectAsync                                = 70,
    SANITIZER_CBID_RUNTIME_API_cudaWGLGetDevice                                            = 71,
    SANITIZER_CBID_RUNTIME_API_cudaGraphicsGLRegisterImage                                 = 72,
    SANITIZER_CBID_RUNTIME_API_cudaGraphicsGLRegisterBuffer                                = 73,
    SANITIZER_CBID_RUNTIME_API_cudaGraphicsUnregisterResource                              = 74,
    SANITIZER_CBID_RUNTIME_API_cudaGraphicsResourceSetMapFlags                             = 75,
    SANITIZER_CBID_RUNTIME_API_cudaGraphicsMapResources                                    = 76,
    SANITIZER_CBID_RUNTIME_API_cudaGraphicsUnmapResources                                  = 77,
    SANITIZER_CBID_RUNTIME_API_cudaGraphicsResourceGetMappedPointer                        = 78,
    SANITIZER_CBID_RUNTIME_API_cudaGraphicsSubResourceGetMappedArray                       = 79,
    SANITIZER_CBID_RUNTIME_API_cudaVDPAUGetDevice                                          = 80,
    SANITIZER_CBID_RUNTIME_API_cudaVDPAUSetVDPAUDevice                                     = 81,
    SANITIZER_CBID_RUNTIME_API_cudaGraphicsVDPAURegisterVideoSurface                       = 82,
    SANITIZER_CBID_RUNTIME_API_cudaGraphicsVDPAURegisterOutputSurface                      = 83,
    SANITIZER_CBID_RUNTIME_API_cudaD3D11GetDevice                                          = 84,
    SANITIZER_CBID_RUNTIME_API_cudaD3D11GetDevices                                         = 85,
    SANITIZER_CBID_RUNTIME_API_cudaD3D11SetDirect3DDevice                                  = 86,
    SANITIZER_CBID_RUNTIME_API_cudaGraphicsD3D11RegisterResource                           = 87,
    SANITIZER_CBID_RUNTIME_API_cudaD3D10GetDevice                                          = 88,
    SANITIZER_CBID_RUNTIME_API_cudaD3D10GetDevices                                         = 89,
    SANITIZER_CBID_RUNTIME_API_cudaD3D10SetDirect3DDevice                                  = 90,
    SANITIZER_CBID_RUNTIME_API_cudaGraphicsD3D10RegisterResource                           = 91,
    SANITIZER_CBID_RUNTIME_API_cudaD3D10RegisterResource                                   = 92,
    SANITIZER_CBID_RUNTIME_API_cudaD3D10UnregisterResource                                 = 93,
    SANITIZER_CBID_RUNTIME_API_cudaD3D10MapResources                                       = 94,
    SANITIZER_CBID_RUNTIME_API_cudaD3D10UnmapResources                                     = 95,
    SANITIZER_CBID_RUNTIME_API_cudaD3D10ResourceSetMapFlags                                = 96,
    SANITIZER_CBID_RUNTIME_API_cudaD3D10ResourceGetSurfaceDimensions                       = 97,
    SANITIZER_CBID_RUNTIME_API_cudaD3D10ResourceGetMappedArray                             = 98,
    SANITIZER_CBID_RUNTIME_API_cudaD3D10ResourceGetMappedPointer                           = 99,
    SANITIZER_CBID_RUNTIME_API_cudaD3D10ResourceGetMappedSize                              = 100,
    SANITIZER_CBID_RUNTIME_API_cudaD3D10ResourceGetMappedPitch                             = 101,
    SANITIZER_CBID_RUNTIME_API_cudaD3D9GetDevice                                           = 102,
    SANITIZER_CBID_RUNTIME_API_cudaD3D9GetDevices                                          = 103,
    SANITIZER_CBID_RUNTIME_API_cudaD3D9SetDirect3DDevice                                   = 104,
    SANITIZER_CBID_RUNTIME_API_cudaD3D9GetDirect3DDevice                                   = 105,
    SANITIZER_CBID_RUNTIME_API_cudaGraphicsD3D9RegisterResource                            = 106,
    SANITIZER_CBID_RUNTIME_API_cudaD3D9RegisterResource                                    = 107,
    SANITIZER_CBID_RUNTIME_API_cudaD3D9UnregisterResource                                  = 108,
    SANITIZER_CBID_RUNTIME_API_cudaD3D9MapResources                                        = 109,
    SANITIZER_CBID_RUNTIME_API_cudaD3D9UnmapResources                                      = 110,
    SANITIZER_CBID_RUNTIME_API_cudaD3D9ResourceSetMapFlags                                 = 111,
    SANITIZER_CBID_RUNTIME_API_cudaD3D9ResourceGetSurfaceDimensions                        = 112,
    SANITIZER_CBID_RUNTIME_API_cudaD3D9ResourceGetMappedArray                              = 113,
    SANITIZER_CBID_RUNTIME_API_cudaD3D9ResourceGetMappedPointer                            = 114,
    SANITIZER_CBID_RUNTIME_API_cudaD3D9ResourceGetMappedSize                               = 115,
    SANITIZER_CBID_RUNTIME_API_cudaD3D9ResourceGetMappedPitch                              = 116,
    SANITIZER_CBID_RUNTIME_API_cudaD3D9Begin                                               = 117,
    SANITIZER_CBID_RUNTIME_API_cudaD3D9End                                                 = 118,
    SANITIZER_CBID_RUNTIME_API_cudaD3D9RegisterVertexBuffer                                = 119,
    SANITIZER_CBID_RUNTIME_API_cudaD3D9UnregisterVertexBuffer                              = 120,
    SANITIZER_CBID_RUNTIME_API_cudaD3D9MapVertexBuffer                                     = 121,
    SANITIZER_CBID_RUNTIME_API_cudaD3D9UnmapVertexBuffer                                   = 122,
    SANITIZER_CBID_RUNTIME_API_cudaThreadExit                                              = 123,
    SANITIZER_CBID_RUNTIME_API_cudaSetDoubleForDevice                                      = 124,
    SANITIZER_CBID_RUNTIME_API_cudaSetDoubleForHost                                        = 125,
    SANITIZER_CBID_RUNTIME_API_cudaThreadSynchronize                                       = 126,
    SANITIZER_CBID_RUNTIME_API_cudaThreadGetLimit                                          = 127,
    SANITIZER_CBID_RUNTIME_API_cudaThreadSetLimit                                          = 128,
    SANITIZER_CBID_RUNTIME_API_cudaStreamCreate                                            = 129,
    SANITIZER_CBID_RUNTIME_API_cudaStreamSynchronize                                       = 131,
    SANITIZER_CBID_RUNTIME_API_cudaStreamQuery                                             = 132,
    SANITIZER_CBID_RUNTIME_API_cudaEventCreate                                             = 133,
    SANITIZER_CBID_RUNTIME_API_cudaEventCreateWithFlags                                    = 134,
    SANITIZER_CBID_RUNTIME_API_cudaEventRecord                                             = 135,
    SANITIZER_CBID_RUNTIME_API_cudaEventDestroy                                            = 136,
    SANITIZER_CBID_RUNTIME_API_cudaEventSynchronize                                        = 137,
    SANITIZER_CBID_RUNTIME_API_cudaEventQuery                                              = 138,
    SANITIZER_CBID_RUNTIME_API_cudaEventElapsedTime                                        = 139,
    SANITIZER_CBID_RUNTIME_API_cudaMalloc3D                                                = 140,
    SANITIZER_CBID_RUNTIME_API_cudaMalloc3DArray                                           = 141,
    SANITIZER_CBID_RUNTIME_API_cudaMemset3D                                                = 142,
    SANITIZER_CBID_RUNTIME_API_cudaMemset3DAsync                                           = 143,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpy3D                                                = 144,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpy3DAsync                                           = 145,
    SANITIZER_CBID_RUNTIME_API_cudaThreadSetCacheConfig                                    = 146,
    SANITIZER_CBID_RUNTIME_API_cudaStreamWaitEvent                                         = 147,
    SANITIZER_CBID_RUNTIME_API_cudaD3D11GetDirect3DDevice                                  = 148,
    SANITIZER_CBID_RUNTIME_API_cudaD3D10GetDirect3DDevice                                  = 149,
    SANITIZER_CBID_RUNTIME_API_cudaThreadGetCacheConfig                                    = 150,
    SANITIZER_CBID_RUNTIME_API_cudaPointerGetAttributes                                    = 151,
    SANITIZER_CBID_RUNTIME_API_cudaHostRegister                                            = 152,
    SANITIZER_CBID_RUNTIME_API_cudaHostUnregister                                          = 153,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceCanAccessPeer                                     = 154,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceEnablePeerAccess                                  = 155,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceDisablePeerAccess                                 = 156,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpyPeer                                              = 160,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpyPeerAsync                                         = 161,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpy3DPeer                                            = 162,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpy3DPeerAsync                                       = 163,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceReset                                             = 164,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceSynchronize                                       = 165,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceGetLimit                                          = 166,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceSetLimit                                          = 167,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceGetCacheConfig                                    = 168,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceSetCacheConfig                                    = 169,
    SANITIZER_CBID_RUNTIME_API_cudaProfilerStart                                           = 171,
    SANITIZER_CBID_RUNTIME_API_cudaProfilerStop                                            = 172,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceGetByPCIBusId                                     = 173,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceGetPCIBusId                                       = 174,
    SANITIZER_CBID_RUNTIME_API_cudaGLGetDevices                                            = 175,
    SANITIZER_CBID_RUNTIME_API_cudaIpcGetEventHandle                                       = 176,
    SANITIZER_CBID_RUNTIME_API_cudaIpcOpenEventHandle                                      = 177,
    SANITIZER_CBID_RUNTIME_API_cudaIpcGetMemHandle                                         = 178,
    SANITIZER_CBID_RUNTIME_API_cudaIpcOpenMemHandle                                        = 179,
    SANITIZER_CBID_RUNTIME_API_cudaIpcCloseMemHandle                                       = 180,
    SANITIZER_CBID_RUNTIME_API_cudaArrayGetInfo                                            = 181,
    SANITIZER_CBID_RUNTIME_API_cudaFuncSetSharedMemConfig                                  = 182,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceGetSharedMemConfig                                = 183,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceSetSharedMemConfig                                = 184,
    SANITIZER_CBID_RUNTIME_API_cudaCreateTextureObject                                     = 185,
    SANITIZER_CBID_RUNTIME_API_cudaDestroyTextureObject                                    = 186,
    SANITIZER_CBID_RUNTIME_API_cudaGetTextureObjectResourceDesc                            = 187,
    SANITIZER_CBID_RUNTIME_API_cudaGetTextureObjectTextureDesc                             = 188,
    SANITIZER_CBID_RUNTIME_API_cudaCreateSurfaceObject                                     = 189,
    SANITIZER_CBID_RUNTIME_API_cudaDestroySurfaceObject                                    = 190,
    SANITIZER_CBID_RUNTIME_API_cudaGetSurfaceObjectResourceDesc                            = 191,
    SANITIZER_CBID_RUNTIME_API_cudaMallocMipmappedArray                                    = 192,
    SANITIZER_CBID_RUNTIME_API_cudaGetMipmappedArrayLevel                                  = 193,
    SANITIZER_CBID_RUNTIME_API_cudaFreeMipmappedArray                                      = 194,
    SANITIZER_CBID_RUNTIME_API_cudaBindTextureToMipmappedArray                             = 195,
    SANITIZER_CBID_RUNTIME_API_cudaGraphicsResourceGetMappedMipmappedArray                 = 196,
    SANITIZER_CBID_RUNTIME_API_cudaStreamAddCallback                                       = 197,
    SANITIZER_CBID_RUNTIME_API_cudaStreamCreateWithFlags                                   = 198,
    SANITIZER_CBID_RUNTIME_API_cudaGetTextureObjectResourceViewDesc                        = 199,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceGetAttribute                                      = 200,
    SANITIZER_CBID_RUNTIME_API_cudaStreamDestroy                                           = 201,
    SANITIZER_CBID_RUNTIME_API_cudaStreamCreateWithPriority                                = 202,
    SANITIZER_CBID_RUNTIME_API_cudaStreamGetPriority                                       = 203,
    SANITIZER_CBID_RUNTIME_API_cudaStreamGetFlags                                          = 204,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceGetStreamPriorityRange                            = 205,
    SANITIZER_CBID_RUNTIME_API_cudaMallocManaged                                           = 206,
    SANITIZER_CBID_RUNTIME_API_cudaStreamAttachMemAsync                                    = 208,
    SANITIZER_CBID_RUNTIME_API_cudaGetErrorName                                            = 209,
    SANITIZER_CBID_RUNTIME_API_cudaOccupancyMaxActiveBlocksPerMultiprocessor               = 210,
    SANITIZER_CBID_RUNTIME_API_cudaLaunchKernel                                            = 211,
    SANITIZER_CBID_RUNTIME_API_cudaGetDeviceFlags                                          = 212,
    SANITIZER_CBID_RUNTIME_API_cudaLaunchKernel_ptsz                                       = 214,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpy_ptds                                             = 215,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpy2D_ptds                                           = 216,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpyToArray_ptds                                      = 217,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpy2DToArray_ptds                                    = 218,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpyFromArray_ptds                                    = 219,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpy2DFromArray_ptds                                  = 220,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpyArrayToArray_ptds                                 = 221,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpy2DArrayToArray_ptds                               = 222,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpyToSymbol_ptds                                     = 223,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpyFromSymbol_ptds                                   = 224,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpyAsync_ptsz                                        = 225,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpyToArrayAsync_ptsz                                 = 226,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpyFromArrayAsync_ptsz                               = 227,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpy2DAsync_ptsz                                      = 228,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpy2DToArrayAsync_ptsz                               = 229,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpy2DFromArrayAsync_ptsz                             = 230,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpyToSymbolAsync_ptsz                                = 231,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpyFromSymbolAsync_ptsz                              = 232,
    SANITIZER_CBID_RUNTIME_API_cudaMemset_ptds                                             = 233,
    SANITIZER_CBID_RUNTIME_API_cudaMemset2D_ptds                                           = 234,
    SANITIZER_CBID_RUNTIME_API_cudaMemsetAsync_ptsz                                        = 235,
    SANITIZER_CBID_RUNTIME_API_cudaMemset2DAsync_ptsz                                      = 236,
    SANITIZER_CBID_RUNTIME_API_cudaStreamGetPriority_ptsz                                  = 237,
    SANITIZER_CBID_RUNTIME_API_cudaStreamGetFlags_ptsz                                     = 238,
    SANITIZER_CBID_RUNTIME_API_cudaStreamSynchronize_ptsz                                  = 239,
    SANITIZER_CBID_RUNTIME_API_cudaStreamQuery_ptsz                                        = 240,
    SANITIZER_CBID_RUNTIME_API_cudaStreamAttachMemAsync_ptsz                               = 241,
    SANITIZER_CBID_RUNTIME_API_cudaEventRecord_ptsz                                        = 242,
    SANITIZER_CBID_RUNTIME_API_cudaMemset3D_ptds                                           = 243,
    SANITIZER_CBID_RUNTIME_API_cudaMemset3DAsync_ptsz                                      = 244,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpy3D_ptds                                           = 245,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpy3DAsync_ptsz                                      = 246,
    SANITIZER_CBID_RUNTIME_API_cudaStreamWaitEvent_ptsz                                    = 247,
    SANITIZER_CBID_RUNTIME_API_cudaStreamAddCallback_ptsz                                  = 248,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpy3DPeer_ptds                                       = 249,
    SANITIZER_CBID_RUNTIME_API_cudaMemcpy3DPeerAsync_ptsz                                  = 250,
    SANITIZER_CBID_RUNTIME_API_cudaOccupancyMaxActiveBlocksPerMultiprocessorWithFlags      = 251,
    SANITIZER_CBID_RUNTIME_API_cudaMemPrefetchAsync                                        = 252,
    SANITIZER_CBID_RUNTIME_API_cudaMemPrefetchAsync_ptsz                                   = 253,
    SANITIZER_CBID_RUNTIME_API_cudaMemAdvise                                               = 254,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceGetP2PAttribute                                   = 255,
    SANITIZER_CBID_RUNTIME_API_cudaGraphicsEGLRegisterImage                                = 256,
    SANITIZER_CBID_RUNTIME_API_cudaEGLStreamConsumerConnect                                = 257,
    SANITIZER_CBID_RUNTIME_API_cudaEGLStreamConsumerDisconnect                             = 258,
    SANITIZER_CBID_RUNTIME_API_cudaEGLStreamConsumerAcquireFrame                           = 259,
    SANITIZER_CBID_RUNTIME_API_cudaEGLStreamConsumerReleaseFrame                           = 260,
    SANITIZER_CBID_RUNTIME_API_cudaEGLStreamProducerConnect                                = 261,
    SANITIZER_CBID_RUNTIME_API_cudaEGLStreamProducerDisconnect                             = 262,
    SANITIZER_CBID_RUNTIME_API_cudaEGLStreamProducerPresentFrame                           = 263,
    SANITIZER_CBID_RUNTIME_API_cudaEGLStreamProducerReturnFrame                            = 264,
    SANITIZER_CBID_RUNTIME_API_cudaGraphicsResourceGetMappedEglFrame                       = 265,
    SANITIZER_CBID_RUNTIME_API_cudaMemRangeGetAttribute                                    = 266,
    SANITIZER_CBID_RUNTIME_API_cudaMemRangeGetAttributes                                   = 267,
    SANITIZER_CBID_RUNTIME_API_cudaEGLStreamConsumerConnectWithFlags                       = 268,
    SANITIZER_CBID_RUNTIME_API_cudaLaunchCooperativeKernel                                 = 269,
    SANITIZER_CBID_RUNTIME_API_cudaLaunchCooperativeKernel_ptsz                            = 270,
    SANITIZER_CBID_RUNTIME_API_cudaEventCreateFromEGLSync                                  = 271,
    SANITIZER_CBID_RUNTIME_API_cudaLaunchCooperativeKernelMultiDevice                      = 272,
    SANITIZER_CBID_RUNTIME_API_cudaFuncSetAttribute                                        = 273,
    SANITIZER_CBID_RUNTIME_API_cudaImportExternalMemory                                    = 274,
    SANITIZER_CBID_RUNTIME_API_cudaExternalMemoryGetMappedBuffer                           = 275,
    SANITIZER_CBID_RUNTIME_API_cudaExternalMemoryGetMappedMipmappedArray                   = 276,
    SANITIZER_CBID_RUNTIME_API_cudaDestroyExternalMemory                                   = 277,
    SANITIZER_CBID_RUNTIME_API_cudaImportExternalSemaphore                                 = 278,
    SANITIZER_CBID_RUNTIME_API_cudaSignalExternalSemaphoresAsync                           = 279,
    SANITIZER_CBID_RUNTIME_API_cudaSignalExternalSemaphoresAsync_ptsz                      = 280,
    SANITIZER_CBID_RUNTIME_API_cudaWaitExternalSemaphoresAsync                             = 281,
    SANITIZER_CBID_RUNTIME_API_cudaWaitExternalSemaphoresAsync_ptsz                        = 282,
    SANITIZER_CBID_RUNTIME_API_cudaDestroyExternalSemaphore                                = 283,
    SANITIZER_CBID_RUNTIME_API_cudaLaunchHostFunc                                          = 284,
    SANITIZER_CBID_RUNTIME_API_cudaLaunchHostFunc_ptsz                                     = 285,
    SANITIZER_CBID_RUNTIME_API_cudaGraphCreate                                             = 286,
    SANITIZER_CBID_RUNTIME_API_cudaGraphKernelNodeGetParams                                = 287,
    SANITIZER_CBID_RUNTIME_API_cudaGraphKernelNodeSetParams                                = 288,
    SANITIZER_CBID_RUNTIME_API_cudaGraphAddKernelNode                                      = 289,
    SANITIZER_CBID_RUNTIME_API_cudaGraphAddMemcpyNode                                      = 290,
    SANITIZER_CBID_RUNTIME_API_cudaGraphMemcpyNodeGetParams                                = 291,
    SANITIZER_CBID_RUNTIME_API_cudaGraphMemcpyNodeSetParams                                = 292,
    SANITIZER_CBID_RUNTIME_API_cudaGraphAddMemsetNode                                      = 293,
    SANITIZER_CBID_RUNTIME_API_cudaGraphMemsetNodeGetParams                                = 294,
    SANITIZER_CBID_RUNTIME_API_cudaGraphMemsetNodeSetParams                                = 295,
    SANITIZER_CBID_RUNTIME_API_cudaGraphAddHostNode                                        = 296,
    SANITIZER_CBID_RUNTIME_API_cudaGraphHostNodeGetParams                                  = 297,
    SANITIZER_CBID_RUNTIME_API_cudaGraphAddChildGraphNode                                  = 298,
    SANITIZER_CBID_RUNTIME_API_cudaGraphChildGraphNodeGetGraph                             = 299,
    SANITIZER_CBID_RUNTIME_API_cudaGraphAddEmptyNode                                       = 300,
    SANITIZER_CBID_RUNTIME_API_cudaGraphClone                                              = 301,
    SANITIZER_CBID_RUNTIME_API_cudaGraphNodeFindInClone                                    = 302,
    SANITIZER_CBID_RUNTIME_API_cudaGraphNodeGetType                                        = 303,
    SANITIZER_CBID_RUNTIME_API_cudaGraphGetRootNodes                                       = 304,
    SANITIZER_CBID_RUNTIME_API_cudaGraphNodeGetDependencies                                = 305,
    SANITIZER_CBID_RUNTIME_API_cudaGraphNodeGetDependentNodes                              = 306,
    SANITIZER_CBID_RUNTIME_API_cudaGraphAddDependencies                                    = 307,
    SANITIZER_CBID_RUNTIME_API_cudaGraphRemoveDependencies                                 = 308,
    SANITIZER_CBID_RUNTIME_API_cudaGraphDestroyNode                                        = 309,
    SANITIZER_CBID_RUNTIME_API_cudaGraphLaunch                                             = 311,
    SANITIZER_CBID_RUNTIME_API_cudaGraphLaunch_ptsz                                        = 312,
    SANITIZER_CBID_RUNTIME_API_cudaGraphExecDestroy                                        = 313,
    SANITIZER_CBID_RUNTIME_API_cudaGraphDestroy                                            = 314,
    SANITIZER_CBID_RUNTIME_API_cudaStreamBeginCapture                                      = 315,
    SANITIZER_CBID_RUNTIME_API_cudaStreamBeginCapture_ptsz                                 = 316,
    SANITIZER_CBID_RUNTIME_API_cudaStreamIsCapturing                                       = 317,
    SANITIZER_CBID_RUNTIME_API_cudaStreamIsCapturing_ptsz                                  = 318,
    SANITIZER_CBID_RUNTIME_API_cudaStreamEndCapture                                        = 319,
    SANITIZER_CBID_RUNTIME_API_cudaStreamEndCapture_ptsz                                   = 320,
    SANITIZER_CBID_RUNTIME_API_cudaGraphHostNodeSetParams                                  = 321,
    SANITIZER_CBID_RUNTIME_API_cudaGraphGetNodes                                           = 322,
    SANITIZER_CBID_RUNTIME_API_cudaGraphGetEdges                                           = 323,
    SANITIZER_CBID_RUNTIME_API_cudaStreamGetCaptureInfo                                    = 324,
    SANITIZER_CBID_RUNTIME_API_cudaStreamGetCaptureInfo_ptsz                               = 325,
    SANITIZER_CBID_RUNTIME_API_cudaGraphExecKernelNodeSetParams                            = 326,
    SANITIZER_CBID_RUNTIME_API_cudaThreadExchangeStreamCaptureMode                         = 327,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceGetNvSciSyncAttributes                            = 328,
    SANITIZER_CBID_RUNTIME_API_cudaOccupancyAvailableDynamicSMemPerBlock                   = 329,
    SANITIZER_CBID_RUNTIME_API_cudaGraphExecMemcpyNodeSetParams                            = 332,
    SANITIZER_CBID_RUNTIME_API_cudaGraphExecMemsetNodeSetParams                            = 333,
    SANITIZER_CBID_RUNTIME_API_cudaGraphExecHostNodeSetParams                              = 334,
    SANITIZER_CBID_RUNTIME_API_cudaGraphExecUpdate                                         = 335,
    SANITIZER_CBID_RUNTIME_API_cudaGetFuncBySymbol                                         = 336,
    SANITIZER_CBID_RUNTIME_API_cudaCtxResetPersistingL2Cache                               = 337,
    SANITIZER_CBID_RUNTIME_API_cudaGraphKernelNodeCopyAttributes                           = 338,
    SANITIZER_CBID_RUNTIME_API_cudaGraphKernelNodeGetAttribute                             = 339,
    SANITIZER_CBID_RUNTIME_API_cudaGraphKernelNodeSetAttribute                             = 340,
    SANITIZER_CBID_RUNTIME_API_cudaStreamCopyAttributes                                    = 341,
    SANITIZER_CBID_RUNTIME_API_cudaStreamCopyAttributes_ptsz                               = 342,
    SANITIZER_CBID_RUNTIME_API_cudaStreamGetAttribute                                      = 343,
    SANITIZER_CBID_RUNTIME_API_cudaStreamGetAttribute_ptsz                                 = 344,
    SANITIZER_CBID_RUNTIME_API_cudaStreamSetAttribute                                      = 345,
    SANITIZER_CBID_RUNTIME_API_cudaStreamSetAttribute_ptsz                                 = 346,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceGetTexture1DLinearMaxWidth                        = 347,
    SANITIZER_CBID_RUNTIME_API_cudaGraphUpload                                             = 348,
    SANITIZER_CBID_RUNTIME_API_cudaGraphUpload_ptsz                                        = 349,
    SANITIZER_CBID_RUNTIME_API_cudaGraphAddMemcpyNodeToSymbol                              = 350,
    SANITIZER_CBID_RUNTIME_API_cudaGraphAddMemcpyNodeFromSymbol                            = 351,
    SANITIZER_CBID_RUNTIME_API_cudaGraphAddMemcpyNode1D                                    = 352,
    SANITIZER_CBID_RUNTIME_API_cudaGraphMemcpyNodeSetParamsToSymbol                        = 353,
    SANITIZER_CBID_RUNTIME_API_cudaGraphMemcpyNodeSetParamsFromSymbol                      = 354,
    SANITIZER_CBID_RUNTIME_API_cudaGraphMemcpyNodeSetParams1D                              = 355,
    SANITIZER_CBID_RUNTIME_API_cudaGraphExecMemcpyNodeSetParamsToSymbol                    = 356,
    SANITIZER_CBID_RUNTIME_API_cudaGraphExecMemcpyNodeSetParamsFromSymbol                  = 357,
    SANITIZER_CBID_RUNTIME_API_cudaGraphExecMemcpyNodeSetParams1D                          = 358,
    SANITIZER_CBID_RUNTIME_API_cudaArrayGetSparseProperties                                = 359,
    SANITIZER_CBID_RUNTIME_API_cudaMipmappedArrayGetSparseProperties                       = 360,
    SANITIZER_CBID_RUNTIME_API_cudaGraphExecChildGraphNodeSetParams                        = 361,
    SANITIZER_CBID_RUNTIME_API_cudaGraphAddEventRecordNode                                 = 362,
    SANITIZER_CBID_RUNTIME_API_cudaGraphEventRecordNodeGetEvent                            = 363,
    SANITIZER_CBID_RUNTIME_API_cudaGraphEventRecordNodeSetEvent                            = 364,
    SANITIZER_CBID_RUNTIME_API_cudaGraphAddEventWaitNode                                   = 365,
    SANITIZER_CBID_RUNTIME_API_cudaGraphEventWaitNodeGetEvent                              = 366,
    SANITIZER_CBID_RUNTIME_API_cudaGraphEventWaitNodeSetEvent                              = 367,
    SANITIZER_CBID_RUNTIME_API_cudaGraphExecEventRecordNodeSetEvent                        = 368,
    SANITIZER_CBID_RUNTIME_API_cudaGraphExecEventWaitNodeSetEvent                          = 369,
    SANITIZER_CBID_RUNTIME_API_cudaEventRecordWithFlags                                    = 370,
    SANITIZER_CBID_RUNTIME_API_cudaEventRecordWithFlags_ptsz                               = 371,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceGetDefaultMemPool                                 = 372,
    SANITIZER_CBID_RUNTIME_API_cudaMallocAsync                                             = 373,
    SANITIZER_CBID_RUNTIME_API_cudaMallocAsync_ptsz                                        = 374,
    SANITIZER_CBID_RUNTIME_API_cudaFreeAsync                                               = 375,
    SANITIZER_CBID_RUNTIME_API_cudaFreeAsync_ptsz                                          = 376,
    SANITIZER_CBID_RUNTIME_API_cudaMemPoolTrimTo                                           = 377,
    SANITIZER_CBID_RUNTIME_API_cudaMemPoolSetAttribute                                     = 378,
    SANITIZER_CBID_RUNTIME_API_cudaMemPoolGetAttribute                                     = 379,
    SANITIZER_CBID_RUNTIME_API_cudaMemPoolSetAccess                                        = 380,
    SANITIZER_CBID_RUNTIME_API_cudaArrayGetPlane                                           = 381,
    SANITIZER_CBID_RUNTIME_API_cudaMemPoolGetAccess                                        = 382,
    SANITIZER_CBID_RUNTIME_API_cudaMemPoolCreate                                           = 383,
    SANITIZER_CBID_RUNTIME_API_cudaMemPoolDestroy                                          = 384,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceSetMemPool                                        = 385,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceGetMemPool                                        = 386,
    SANITIZER_CBID_RUNTIME_API_cudaMemPoolExportToShareableHandle                          = 387,
    SANITIZER_CBID_RUNTIME_API_cudaMemPoolImportFromShareableHandle                        = 388,
    SANITIZER_CBID_RUNTIME_API_cudaMemPoolExportPointer                                    = 389,
    SANITIZER_CBID_RUNTIME_API_cudaMemPoolImportPointer                                    = 390,
    SANITIZER_CBID_RUNTIME_API_cudaMallocFromPoolAsync                                     = 391,
    SANITIZER_CBID_RUNTIME_API_cudaMallocFromPoolAsync_ptsz                                = 392,
    SANITIZER_CBID_RUNTIME_API_cudaSignalExternalSemaphoresAsync_v2                        = 393,
    SANITIZER_CBID_RUNTIME_API_cudaSignalExternalSemaphoresAsync_v2_ptsz                   = 394,
    SANITIZER_CBID_RUNTIME_API_cudaWaitExternalSemaphoresAsync_v2                          = 395,
    SANITIZER_CBID_RUNTIME_API_cudaWaitExternalSemaphoresAsync_v2_ptsz                     = 396,
    SANITIZER_CBID_RUNTIME_API_cudaGraphAddExternalSemaphoresSignalNode                    = 397,
    SANITIZER_CBID_RUNTIME_API_cudaGraphExternalSemaphoresSignalNodeGetParams              = 398,
    SANITIZER_CBID_RUNTIME_API_cudaGraphExternalSemaphoresSignalNodeSetParams              = 399,
    SANITIZER_CBID_RUNTIME_API_cudaGraphAddExternalSemaphoresWaitNode                      = 400,
    SANITIZER_CBID_RUNTIME_API_cudaGraphExternalSemaphoresWaitNodeGetParams                = 401,
    SANITIZER_CBID_RUNTIME_API_cudaGraphExternalSemaphoresWaitNodeSetParams                = 402,
    SANITIZER_CBID_RUNTIME_API_cudaGraphExecExternalSemaphoresSignalNodeSetParams          = 403,
    SANITIZER_CBID_RUNTIME_API_cudaGraphExecExternalSemaphoresWaitNodeSetParams            = 404,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceFlushGPUDirectRDMAWrites                          = 405,
    SANITIZER_CBID_RUNTIME_API_cudaGetDriverEntryPoint                                     = 406,
    SANITIZER_CBID_RUNTIME_API_cudaGetDriverEntryPoint_ptsz                                = 407,
    SANITIZER_CBID_RUNTIME_API_cudaGraphDebugDotPrint                                      = 408,
    SANITIZER_CBID_RUNTIME_API_cudaStreamGetCaptureInfo_v2                                 = 409,
    SANITIZER_CBID_RUNTIME_API_cudaStreamGetCaptureInfo_v2_ptsz                            = 410,
    SANITIZER_CBID_RUNTIME_API_cudaStreamUpdateCaptureDependencies                         = 411,
    SANITIZER_CBID_RUNTIME_API_cudaStreamUpdateCaptureDependencies_ptsz                    = 412,
    SANITIZER_CBID_RUNTIME_API_cudaUserObjectCreate                                        = 413,
    SANITIZER_CBID_RUNTIME_API_cudaUserObjectRetain                                        = 414,
    SANITIZER_CBID_RUNTIME_API_cudaUserObjectRelease                                       = 415,
    SANITIZER_CBID_RUNTIME_API_cudaGraphRetainUserObject                                   = 416,
    SANITIZER_CBID_RUNTIME_API_cudaGraphReleaseUserObject                                  = 417,
    SANITIZER_CBID_RUNTIME_API_cudaGraphInstantiateWithFlags                               = 418,
    SANITIZER_CBID_RUNTIME_API_cudaGraphAddMemAllocNode                                    = 419,
    SANITIZER_CBID_RUNTIME_API_cudaGraphMemAllocNodeGetParams                              = 420,
    SANITIZER_CBID_RUNTIME_API_cudaGraphAddMemFreeNode                                     = 421,
    SANITIZER_CBID_RUNTIME_API_cudaGraphMemFreeNodeGetParams                               = 422,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceGraphMemTrim                                      = 423,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceGetGraphMemAttribute                              = 424,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceSetGraphMemAttribute                              = 425,
    SANITIZER_CBID_RUNTIME_API_cudaGraphNodeSetEnabled                                     = 426,
    SANITIZER_CBID_RUNTIME_API_cudaGraphNodeGetEnabled                                     = 427,
    SANITIZER_CBID_RUNTIME_API_cudaArrayGetMemoryRequirements                              = 428,
    SANITIZER_CBID_RUNTIME_API_cudaMipmappedArrayGetMemoryRequirements                     = 429,
    SANITIZER_CBID_RUNTIME_API_cudaLaunchKernelExC                                         = 430,
    SANITIZER_CBID_RUNTIME_API_cudaLaunchKernelExC_ptsz                                    = 431,
    SANITIZER_CBID_RUNTIME_API_cudaOccupancyMaxPotentialClusterSize                        = 432,
    SANITIZER_CBID_RUNTIME_API_cudaOccupancyMaxActiveClusters                              = 433,
    SANITIZER_CBID_RUNTIME_API_cudaGraphInstantiateWithParams                              = 436,
    SANITIZER_CBID_RUNTIME_API_cudaGraphInstantiateWithParams_ptsz                         = 437,
    SANITIZER_CBID_RUNTIME_API_cudaGraphExecGetFlags                                       = 438,
    SANITIZER_CBID_RUNTIME_API_cudaGetKernel                                               = 439,
    SANITIZER_CBID_RUNTIME_API_cudaGetDeviceProperties_v2                                  = 440,
    SANITIZER_CBID_RUNTIME_API_cudaStreamGetId                                             = 441,
    SANITIZER_CBID_RUNTIME_API_cudaStreamGetId_ptsz                                        = 442,
    SANITIZER_CBID_RUNTIME_API_cudaGraphInstantiate                                        = 443,
    SANITIZER_CBID_RUNTIME_API_cudaInitDevice                                              = 444,
    SANITIZER_CBID_RUNTIME_API_cudaGraphAddNode                                            = 445,
    SANITIZER_CBID_RUNTIME_API_cudaGraphNodeSetParams                                      = 446,
    SANITIZER_CBID_RUNTIME_API_cudaGraphExecNodeSetParams                                  = 447,
    SANITIZER_CBID_RUNTIME_API_cudaMemAdvise_v2                                            = 448,
    SANITIZER_CBID_RUNTIME_API_cudaMemPrefetchAsync_v2                                     = 449,
    SANITIZER_CBID_RUNTIME_API_cudaMemPrefetchAsync_v2_ptsz                                = 450,
    SANITIZER_CBID_RUNTIME_API_cudaFuncGetName                                             = 451,
    SANITIZER_CBID_RUNTIME_API_cudaStreamBeginCaptureToGraph                               = 452,
    SANITIZER_CBID_RUNTIME_API_cudaStreamBeginCaptureToGraph_ptsz                          = 453,
    SANITIZER_CBID_RUNTIME_API_cudaGraphConditionalHandleCreate                            = 454,
    SANITIZER_CBID_RUNTIME_API_cudaGraphGetEdges_v2                                        = 455,
    SANITIZER_CBID_RUNTIME_API_cudaGraphNodeGetDependencies_v2                             = 456,
    SANITIZER_CBID_RUNTIME_API_cudaGraphNodeGetDependentNodes_v2                           = 457,
    SANITIZER_CBID_RUNTIME_API_cudaGraphAddDependencies_v2                                 = 458,
    SANITIZER_CBID_RUNTIME_API_cudaGraphRemoveDependencies_v2                              = 459,
    SANITIZER_CBID_RUNTIME_API_cudaGraphAddNode_v2                                         = 460,
    SANITIZER_CBID_RUNTIME_API_cudaStreamGetCaptureInfo_v3                                 = 461,
    SANITIZER_CBID_RUNTIME_API_cudaStreamGetCaptureInfo_v3_ptsz                            = 462,
    SANITIZER_CBID_RUNTIME_API_cudaStreamUpdateCaptureDependencies_v2                      = 463,
    SANITIZER_CBID_RUNTIME_API_cudaStreamUpdateCaptureDependencies_v2_ptsz                 = 464,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceRegisterAsyncNotification                         = 465,
    SANITIZER_CBID_RUNTIME_API_cudaDeviceUnregisterAsyncNotification                       = 466,
    SANITIZER_CBID_RUNTIME_API_cudaFuncGetParamInfo                                        = 467,
    SANITIZER_CBID_RUNTIME_API_SIZE                                                        = 468,
    SANITIZER_CBID_RUNTIME_API_FORCE_INT                                                   = 0x7fffffff
} SANITIZER_CBID_RUNTIME_API;

#endif