Skip to content

Commit f7fefbe

Browse files
committed
Defer generated pointer docs cleanup
1 parent 40469f4 commit f7fefbe

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

cuda_bindings/docs/source/module/driver.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -406,25 +406,25 @@ Data types used by CUDA driver
406406
.. autoattribute:: cuda.bindings.driver.CUstreamWaitValue_flags.CU_STREAM_WAIT_VALUE_GEQ
407407

408408

409-
Wait until (int32_t)(\*addr - value) >= 0 (or int64_t for 64 bit values). Note this is a cyclic comparison which ignores wraparound. (Default behavior.)
409+
Wait until (int32_t)(*addr - value) >= 0 (or int64_t for 64 bit values). Note this is a cyclic comparison which ignores wraparound. (Default behavior.)
410410
411411

412412
.. autoattribute:: cuda.bindings.driver.CUstreamWaitValue_flags.CU_STREAM_WAIT_VALUE_EQ
413413

414414

415-
Wait until \*addr == value.
415+
Wait until *addr == value.
416416
417417

418418
.. autoattribute:: cuda.bindings.driver.CUstreamWaitValue_flags.CU_STREAM_WAIT_VALUE_AND
419419

420420

421-
Wait until (\*addr & value) != 0.
421+
Wait until (*addr & value) != 0.
422422
423423

424424
.. autoattribute:: cuda.bindings.driver.CUstreamWaitValue_flags.CU_STREAM_WAIT_VALUE_NOR
425425

426426

427-
Wait until ~(\*addr | value) != 0. Support for this operation can be queried with :py:obj:`~.cuDeviceGetAttribute()` and :py:obj:`~.CU_DEVICE_ATTRIBUTE_CAN_USE_STREAM_WAIT_VALUE_NOR`.
427+
Wait until ~(*addr | value) != 0. Support for this operation can be queried with :py:obj:`~.cuDeviceGetAttribute()` and :py:obj:`~.CU_DEVICE_ATTRIBUTE_CAN_USE_STREAM_WAIT_VALUE_NOR`.
428428
429429

430430
.. autoattribute:: cuda.bindings.driver.CUstreamWaitValue_flags.CU_STREAM_WAIT_VALUE_FLUSH
@@ -506,19 +506,19 @@ Data types used by CUDA driver
506506
.. autoattribute:: cuda.bindings.driver.CUstreamAtomicReductionOpType.CU_STREAM_ATOMIC_REDUCTION_OP_OR
507507

508508

509-
Performs an atomic OR: \*(address) = \*(address) | value
509+
Performs an atomic OR: *(address) = *(address) | value
510510
511511

512512
.. autoattribute:: cuda.bindings.driver.CUstreamAtomicReductionOpType.CU_STREAM_ATOMIC_REDUCTION_OP_AND
513513

514514

515-
Performs an atomic AND: \*(address) = \*(address) & value
515+
Performs an atomic AND: *(address) = *(address) & value
516516
517517

518518
.. autoattribute:: cuda.bindings.driver.CUstreamAtomicReductionOpType.CU_STREAM_ATOMIC_REDUCTION_OP_ADD
519519

520520

521-
Performs an atomic ADD: \*(address) = \*(address) + value
521+
Performs an atomic ADD: *(address) = *(address) + value
522522
523523
.. autoclass:: cuda.bindings.driver.CUstreamAtomicReductionDataType
524524

cuda_bindings/docs/source/module/runtime.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6403,11 +6403,11 @@ The types ::CUevent and cudaEvent_t are identical and may be used interchangeabl
64036403

64046404

64056405

6406-
The types ``CUarray`` and ``struct cudaArray *`` represent the same data type and may be used interchangeably by casting the two types between each other.
6406+
The types ::CUarray and struct ::cudaArray * represent the same data type and may be used interchangeably by casting the two types between each other.
64076407

6408-
In order to use a ``CUarray`` in a CUDA Runtime API function which takes a ``struct cudaArray *``, it is necessary to explicitly cast the ``CUarray`` to a ``struct cudaArray *``.
6408+
In order to use a ::CUarray in a CUDA Runtime API function which takes a struct ::cudaArray *, it is necessary to explicitly cast the ::CUarray to a struct ::cudaArray *.
64096409
6410-
In order to use a ``struct cudaArray *`` in a CUDA Driver API function which takes a ``CUarray``, it is necessary to explicitly cast the ``struct cudaArray *`` to a ``CUarray``.
6410+
In order to use a struct ::cudaArray * in a CUDA Driver API function which takes a ::CUarray, it is necessary to explicitly cast the struct ::cudaArray * to a ::CUarray .
64116411

64126412

64136413

0 commit comments

Comments
 (0)