cuda.core.EventOptions#
- class cuda.core.EventOptions(
- timing_enabled: bool | None = False,
- blocking_sync: bool | None = False,
- ipc_enabled: bool | None = False,
Customizable
Eventoptions.- blocking_sync#
If True, the event uses blocking synchronization: a CPU thread that calls
Event.sync()blocks (yields) until the event has completed. Otherwise (the default), the CPU thread busy-waits until the event has completed. (Default to False)- Type:
bool, optional