Skip to main content

Mojo module

semaphore

GPU semaphore operations (deprecated - use gpu.sync.semaphore).

This module is deprecated. For new code, import from the gpu.sync.semaphore module instead:

# Deprecated:
from gpu.semaphore import Semaphore, NamedBarrierSemaphore

# Recommended:
from gpu.sync.semaphore import Semaphore, NamedBarrierSemaphore

This module provides semaphore synchronization primitives for GPU programming.

Was this page helpful?