-
Notifications
You must be signed in to change notification settings - Fork 275
Expand file tree
/
Copy pathdriver.pxd.in
More file actions
11740 lines (10474 loc) · 347 KB
/
driver.pxd.in
File metadata and controls
11740 lines (10474 loc) · 347 KB
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
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# SPDX-FileCopyrightText: Copyright (c) 2021-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
# This code was automatically generated with version 13.2.0, generator version 0.3.1.dev1422+gf4812259e.d20260318. Do not modify it directly.
cimport cuda.bindings.cydriver as cydriver
include "_lib/utils.pxd"
{{if 'CUcontext' in found_types}}
cdef class CUcontext:
"""
A regular context handle
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUcontext _pvt_val
cdef cydriver.CUcontext* _pvt_ptr
{{endif}}
{{if 'CUmodule' in found_types}}
cdef class CUmodule:
"""
CUDA module
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUmodule _pvt_val
cdef cydriver.CUmodule* _pvt_ptr
{{endif}}
{{if 'CUfunction' in found_types}}
cdef class CUfunction:
"""
CUDA function
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUfunction _pvt_val
cdef cydriver.CUfunction* _pvt_ptr
{{endif}}
{{if 'CUlibrary' in found_types}}
cdef class CUlibrary:
"""
CUDA library
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUlibrary _pvt_val
cdef cydriver.CUlibrary* _pvt_ptr
{{endif}}
{{if 'CUkernel' in found_types}}
cdef class CUkernel:
"""
CUDA kernel
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUkernel _pvt_val
cdef cydriver.CUkernel* _pvt_ptr
{{endif}}
{{if 'CUarray' in found_types}}
cdef class CUarray:
"""
CUDA array
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUarray _pvt_val
cdef cydriver.CUarray* _pvt_ptr
{{endif}}
{{if 'CUmipmappedArray' in found_types}}
cdef class CUmipmappedArray:
"""
CUDA mipmapped array
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUmipmappedArray _pvt_val
cdef cydriver.CUmipmappedArray* _pvt_ptr
{{endif}}
{{if 'CUtexref' in found_types}}
cdef class CUtexref:
"""
CUDA texture reference
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUtexref _pvt_val
cdef cydriver.CUtexref* _pvt_ptr
{{endif}}
{{if 'CUsurfref' in found_types}}
cdef class CUsurfref:
"""
CUDA surface reference
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUsurfref _pvt_val
cdef cydriver.CUsurfref* _pvt_ptr
{{endif}}
{{if 'CUevent' in found_types}}
cdef class CUevent:
"""
CUDA event
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUevent _pvt_val
cdef cydriver.CUevent* _pvt_ptr
{{endif}}
{{if 'CUstream' in found_types}}
cdef class CUstream:
"""
CUDA stream
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUstream _pvt_val
cdef cydriver.CUstream* _pvt_ptr
{{endif}}
{{if 'CUgraphicsResource' in found_types}}
cdef class CUgraphicsResource:
"""
CUDA graphics interop resource
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUgraphicsResource _pvt_val
cdef cydriver.CUgraphicsResource* _pvt_ptr
{{endif}}
{{if 'CUexternalMemory' in found_types}}
cdef class CUexternalMemory:
"""
CUDA external memory
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUexternalMemory _pvt_val
cdef cydriver.CUexternalMemory* _pvt_ptr
{{endif}}
{{if 'CUexternalSemaphore' in found_types}}
cdef class CUexternalSemaphore:
"""
CUDA external semaphore
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUexternalSemaphore _pvt_val
cdef cydriver.CUexternalSemaphore* _pvt_ptr
{{endif}}
{{if 'CUgraph' in found_types}}
cdef class CUgraph:
"""
CUDA graph
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUgraph _pvt_val
cdef cydriver.CUgraph* _pvt_ptr
{{endif}}
{{if 'CUgraphNode' in found_types}}
cdef class CUgraphNode:
"""
CUDA graph node
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUgraphNode _pvt_val
cdef cydriver.CUgraphNode* _pvt_ptr
{{endif}}
{{if 'CUgraphExec' in found_types}}
cdef class CUgraphExec:
"""
CUDA executable graph
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUgraphExec _pvt_val
cdef cydriver.CUgraphExec* _pvt_ptr
{{endif}}
{{if 'CUmemoryPool' in found_types}}
cdef class CUmemoryPool:
"""
CUDA memory pool
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUmemoryPool _pvt_val
cdef cydriver.CUmemoryPool* _pvt_ptr
{{endif}}
{{if 'CUuserObject' in found_types}}
cdef class CUuserObject:
"""
CUDA user object for graphs
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUuserObject _pvt_val
cdef cydriver.CUuserObject* _pvt_ptr
{{endif}}
{{if 'CUgraphDeviceNode' in found_types}}
cdef class CUgraphDeviceNode:
"""
CUDA graph device node handle
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUgraphDeviceNode _pvt_val
cdef cydriver.CUgraphDeviceNode* _pvt_ptr
{{endif}}
{{if 'CUasyncCallbackHandle' in found_types}}
cdef class CUasyncCallbackHandle:
"""
CUDA async notification callback handle
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUasyncCallbackHandle _pvt_val
cdef cydriver.CUasyncCallbackHandle* _pvt_ptr
{{endif}}
{{if 'CUgreenCtx' in found_types}}
cdef class CUgreenCtx:
"""
A green context handle. This handle can be used safely from only one CPU thread at a time. Created via cuGreenCtxCreate
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUgreenCtx _pvt_val
cdef cydriver.CUgreenCtx* _pvt_ptr
{{endif}}
{{if 'CUlinkState' in found_types}}
cdef class CUlinkState:
"""
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUlinkState _pvt_val
cdef cydriver.CUlinkState* _pvt_ptr
cdef list _keepalive
{{endif}}
{{if 'CUcoredumpCallbackHandle' in found_types}}
cdef class CUcoredumpCallbackHandle:
""" Opaque handle representing a registered coredump status callback.
This handle is returned when registering a callback and must be provided when deregistering the callback.
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUcoredumpCallbackHandle _pvt_val
cdef cydriver.CUcoredumpCallbackHandle* _pvt_ptr
{{endif}}
{{if 'CUdevResourceDesc' in found_types}}
cdef class CUdevResourceDesc:
"""
An opaque descriptor handle. The descriptor encapsulates multiple created and configured resources. Created via cuDevResourceGenerateDesc
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUdevResourceDesc _pvt_val
cdef cydriver.CUdevResourceDesc* _pvt_ptr
{{endif}}
{{if 'CUlogsCallbackHandle' in found_types}}
cdef class CUlogsCallbackHandle:
"""
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUlogsCallbackHandle _pvt_val
cdef cydriver.CUlogsCallbackHandle* _pvt_ptr
{{endif}}
{{if True}}
cdef class CUeglStreamConnection:
"""
CUDA EGLSream Connection
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUeglStreamConnection _pvt_val
cdef cydriver.CUeglStreamConnection* _pvt_ptr
{{endif}}
{{if True}}
cdef class EGLImageKHR:
"""
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.EGLImageKHR _pvt_val
cdef cydriver.EGLImageKHR* _pvt_ptr
{{endif}}
{{if True}}
cdef class EGLStreamKHR:
"""
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.EGLStreamKHR _pvt_val
cdef cydriver.EGLStreamKHR* _pvt_ptr
{{endif}}
{{if True}}
cdef class EGLSyncKHR:
"""
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.EGLSyncKHR _pvt_val
cdef cydriver.EGLSyncKHR* _pvt_ptr
{{endif}}
{{if 'CUasyncCallback' in found_types}}
cdef class CUasyncCallback:
"""
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUasyncCallback _pvt_val
cdef cydriver.CUasyncCallback* _pvt_ptr
{{endif}}
{{if 'CUhostFn' in found_types}}
cdef class CUhostFn:
"""
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUhostFn _pvt_val
cdef cydriver.CUhostFn* _pvt_ptr
{{endif}}
{{if 'CUstreamCallback' in found_types}}
cdef class CUstreamCallback:
"""
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUstreamCallback _pvt_val
cdef cydriver.CUstreamCallback* _pvt_ptr
{{endif}}
{{if 'CUoccupancyB2DSize' in found_types}}
cdef class CUoccupancyB2DSize:
"""
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUoccupancyB2DSize _pvt_val
cdef cydriver.CUoccupancyB2DSize* _pvt_ptr
{{endif}}
{{if 'CUcoredumpStatusCallback' in found_types}}
cdef class CUcoredumpStatusCallback:
"""
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUcoredumpStatusCallback _pvt_val
cdef cydriver.CUcoredumpStatusCallback* _pvt_ptr
{{endif}}
{{if 'CUlogsCallback' in found_types}}
cdef class CUlogsCallback:
"""
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUlogsCallback _pvt_val
cdef cydriver.CUlogsCallback* _pvt_ptr
{{endif}}
{{if 'CUuuid_st' in found_struct}}
cdef class CUuuid_st:
"""
Attributes
----------
{{if 'CUuuid_st.bytes' in found_struct}}
bytes : bytes
< CUDA definition of UUID
{{endif}}
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUuuid_st _pvt_val
cdef cydriver.CUuuid_st* _pvt_ptr
{{endif}}
{{if 'CUmemFabricHandle_st' in found_struct}}
cdef class CUmemFabricHandle_st:
"""
Fabric handle - An opaque handle representing a memory allocation
that can be exported to processes in same or different nodes. For
IPC between processes on different nodes they must be connected via
the NVSwitch fabric.
Attributes
----------
{{if 'CUmemFabricHandle_st.data' in found_struct}}
data : bytes
{{endif}}
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUmemFabricHandle_st _pvt_val
cdef cydriver.CUmemFabricHandle_st* _pvt_ptr
{{endif}}
{{if 'CUipcEventHandle_st' in found_struct}}
cdef class CUipcEventHandle_st:
"""
CUDA IPC event handle
Attributes
----------
{{if 'CUipcEventHandle_st.reserved' in found_struct}}
reserved : bytes
{{endif}}
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUipcEventHandle_st _pvt_val
cdef cydriver.CUipcEventHandle_st* _pvt_ptr
{{endif}}
{{if 'CUipcMemHandle_st' in found_struct}}
cdef class CUipcMemHandle_st:
"""
CUDA IPC mem handle
Attributes
----------
{{if 'CUipcMemHandle_st.reserved' in found_struct}}
reserved : bytes
{{endif}}
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUipcMemHandle_st _pvt_val
cdef cydriver.CUipcMemHandle_st* _pvt_ptr
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.waitValue' in found_struct}}
cdef class CUstreamMemOpWaitValueParams_st:
"""
Attributes
----------
{{if 'CUstreamBatchMemOpParams_union.waitValue.operation' in found_struct}}
operation : CUstreamBatchMemOpType
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.waitValue.address' in found_struct}}
address : CUdeviceptr
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.waitValue.value' in found_struct}}
value : cuuint32_t
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.waitValue.value64' in found_struct}}
value64 : cuuint64_t
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.waitValue.flags' in found_struct}}
flags : unsigned int
See CUstreamWaitValue_flags.
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.waitValue.alias' in found_struct}}
alias : CUdeviceptr
For driver internal use. Initial value is unimportant.
{{endif}}
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUstreamBatchMemOpParams_union* _pvt_ptr
{{if 'CUstreamBatchMemOpParams_union.waitValue.address' in found_struct}}
cdef CUdeviceptr _address
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.waitValue.value' in found_struct}}
cdef cuuint32_t _value
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.waitValue.value64' in found_struct}}
cdef cuuint64_t _value64
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.waitValue.alias' in found_struct}}
cdef CUdeviceptr _alias
{{endif}}
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.writeValue' in found_struct}}
cdef class CUstreamMemOpWriteValueParams_st:
"""
Attributes
----------
{{if 'CUstreamBatchMemOpParams_union.writeValue.operation' in found_struct}}
operation : CUstreamBatchMemOpType
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.writeValue.address' in found_struct}}
address : CUdeviceptr
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.writeValue.value' in found_struct}}
value : cuuint32_t
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.writeValue.value64' in found_struct}}
value64 : cuuint64_t
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.writeValue.flags' in found_struct}}
flags : unsigned int
See CUstreamWriteValue_flags.
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.writeValue.alias' in found_struct}}
alias : CUdeviceptr
For driver internal use. Initial value is unimportant.
{{endif}}
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUstreamBatchMemOpParams_union* _pvt_ptr
{{if 'CUstreamBatchMemOpParams_union.writeValue.address' in found_struct}}
cdef CUdeviceptr _address
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.writeValue.value' in found_struct}}
cdef cuuint32_t _value
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.writeValue.value64' in found_struct}}
cdef cuuint64_t _value64
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.writeValue.alias' in found_struct}}
cdef CUdeviceptr _alias
{{endif}}
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.flushRemoteWrites' in found_struct}}
cdef class CUstreamMemOpFlushRemoteWritesParams_st:
"""
Attributes
----------
{{if 'CUstreamBatchMemOpParams_union.flushRemoteWrites.operation' in found_struct}}
operation : CUstreamBatchMemOpType
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.flushRemoteWrites.flags' in found_struct}}
flags : unsigned int
Must be 0.
{{endif}}
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUstreamBatchMemOpParams_union* _pvt_ptr
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.memoryBarrier' in found_struct}}
cdef class CUstreamMemOpMemoryBarrierParams_st:
"""
Attributes
----------
{{if 'CUstreamBatchMemOpParams_union.memoryBarrier.operation' in found_struct}}
operation : CUstreamBatchMemOpType
< Only supported in the _v2 API
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.memoryBarrier.flags' in found_struct}}
flags : unsigned int
See CUstreamMemoryBarrier_flags
{{endif}}
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUstreamBatchMemOpParams_union* _pvt_ptr
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.atomicReduction' in found_struct}}
cdef class CUstreamMemOpAtomicReductionParams_st:
"""
Attributes
----------
{{if 'CUstreamBatchMemOpParams_union.atomicReduction.operation' in found_struct}}
operation : CUstreamBatchMemOpType
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.atomicReduction.flags' in found_struct}}
flags : unsigned int
Must be 0
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.atomicReduction.reductionOp' in found_struct}}
reductionOp : CUstreamAtomicReductionOpType
See CUstreamAtomicReductionOpType
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.atomicReduction.dataType' in found_struct}}
dataType : CUstreamAtomicReductionDataType
See CUstreamAtomicReductionDataType
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.atomicReduction.address' in found_struct}}
address : CUdeviceptr
The address the atomic operation will be operated on
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.atomicReduction.value' in found_struct}}
value : cuuint64_t
The operand value the atomic operation will operate with
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.atomicReduction.alias' in found_struct}}
alias : CUdeviceptr
For driver internal use. Initial value is unimportant.
{{endif}}
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUstreamBatchMemOpParams_union* _pvt_ptr
{{if 'CUstreamBatchMemOpParams_union.atomicReduction.address' in found_struct}}
cdef CUdeviceptr _address
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.atomicReduction.value' in found_struct}}
cdef cuuint64_t _value
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.atomicReduction.alias' in found_struct}}
cdef CUdeviceptr _alias
{{endif}}
{{endif}}
{{if 'CUstreamBatchMemOpParams_union' in found_struct}}
cdef class CUstreamBatchMemOpParams_union:
"""
Per-operation parameters for cuStreamBatchMemOp
Attributes
----------
{{if 'CUstreamBatchMemOpParams_union.operation' in found_struct}}
operation : CUstreamBatchMemOpType
Operation. This is the first field of all the union elemets and
acts as a TAG to determine which union member is valid.
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.waitValue' in found_struct}}
waitValue : CUstreamMemOpWaitValueParams_st
Params for CU_STREAM_MEM_OP_WAIT_VALUE_32 and
CU_STREAM_MEM_OP_WAIT_VALUE_64 operations.
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.writeValue' in found_struct}}
writeValue : CUstreamMemOpWriteValueParams_st
Params for CU_STREAM_MEM_OP_WRITE_VALUE_32 and
CU_STREAM_MEM_OP_WRITE_VALUE_64 operations.
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.flushRemoteWrites' in found_struct}}
flushRemoteWrites : CUstreamMemOpFlushRemoteWritesParams_st
Params for CU_STREAM_MEM_OP_FLUSH_REMOTE_WRITES operations.
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.memoryBarrier' in found_struct}}
memoryBarrier : CUstreamMemOpMemoryBarrierParams_st
Params for CU_STREAM_MEM_OP_BARRIER operations.
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.atomicReduction' in found_struct}}
atomicReduction : CUstreamMemOpAtomicReductionParams_st
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.pad' in found_struct}}
pad : list[cuuint64_t]
{{endif}}
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUstreamBatchMemOpParams_union _pvt_val
cdef cydriver.CUstreamBatchMemOpParams_union* _pvt_ptr
{{if 'CUstreamBatchMemOpParams_union.waitValue' in found_struct}}
cdef CUstreamMemOpWaitValueParams_st _waitValue
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.writeValue' in found_struct}}
cdef CUstreamMemOpWriteValueParams_st _writeValue
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.flushRemoteWrites' in found_struct}}
cdef CUstreamMemOpFlushRemoteWritesParams_st _flushRemoteWrites
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.memoryBarrier' in found_struct}}
cdef CUstreamMemOpMemoryBarrierParams_st _memoryBarrier
{{endif}}
{{if 'CUstreamBatchMemOpParams_union.atomicReduction' in found_struct}}
cdef CUstreamMemOpAtomicReductionParams_st _atomicReduction
{{endif}}
{{endif}}
{{if 'CUDA_BATCH_MEM_OP_NODE_PARAMS_v1_st' in found_struct}}
cdef class CUDA_BATCH_MEM_OP_NODE_PARAMS_v1_st:
"""
Batch memory operation node parameters Used in the legacy
cuGraphAddBatchMemOpNode api. New code should use cuGraphAddNode()
Attributes
----------
{{if 'CUDA_BATCH_MEM_OP_NODE_PARAMS_v1_st.ctx' in found_struct}}
ctx : CUcontext
{{endif}}
{{if 'CUDA_BATCH_MEM_OP_NODE_PARAMS_v1_st.count' in found_struct}}
count : unsigned int
{{endif}}
{{if 'CUDA_BATCH_MEM_OP_NODE_PARAMS_v1_st.paramArray' in found_struct}}
paramArray : CUstreamBatchMemOpParams
{{endif}}
{{if 'CUDA_BATCH_MEM_OP_NODE_PARAMS_v1_st.flags' in found_struct}}
flags : unsigned int
{{endif}}
Methods
-------
getPtr()
Get memory address of class instance
"""
cdef cydriver.CUDA_BATCH_MEM_OP_NODE_PARAMS_v1_st _pvt_val
cdef cydriver.CUDA_BATCH_MEM_OP_NODE_PARAMS_v1_st* _pvt_ptr
{{if 'CUDA_BATCH_MEM_OP_NODE_PARAMS_v1_st.ctx' in found_struct}}
cdef CUcontext _ctx
{{endif}}
{{if 'CUDA_BATCH_MEM_OP_NODE_PARAMS_v1_st.paramArray' in found_struct}}
cdef size_t _paramArray_length
cdef cydriver.CUstreamBatchMemOpParams* _paramArray
{{endif}}
{{endif}}
{{if 'CUDA_BATCH_MEM_OP_NODE_PARAMS_v2_st' in found_struct}}
cdef class CUDA_BATCH_MEM_OP_NODE_PARAMS_v2_st:
"""
Batch memory operation node parameters
Attributes
----------
{{if 'CUDA_BATCH_MEM_OP_NODE_PARAMS_v2_st.ctx' in found_struct}}
ctx : CUcontext
Context to use for the operations.
{{endif}}
{{if 'CUDA_BATCH_MEM_OP_NODE_PARAMS_v2_st.count' in found_struct}}
count : unsigned int
Number of operations in paramArray.
{{endif}}
{{if 'CUDA_BATCH_MEM_OP_NODE_PARAMS_v2_st.paramArray' in found_struct}}