cuda.core.experimental.LaunchConfig¶
- class cuda.core.experimental.LaunchConfig(grid: tuple | int = None, block: tuple | int = None, stream: Stream = None, shmem_size: int | None = None)¶
Customizable launch options.
- block¶
Group of threads (Thread Block) that will execute on the same multiprocessor. Threads within a thread blocks have access to shared memory and can be explicitly synchronized.
- stream¶
The stream establishing the stream ordering semantic of a launch.
- Type:
Stream