We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8558ab9 commit a61fb77Copy full SHA for a61fb77
vllm/distributed/device_communicators/shm_object_storage.py
@@ -157,7 +157,7 @@ def __init__(
157
158
if create:
159
# we are creating a buffer
160
- self.metadata = {} # monotonic_id -> start address
+ self.metadata: dict[int, int] = {} # monotonic_id -> start address
161
self.shared_memory = shared_memory.SharedMemory(
162
create=True, size=self.data_buffer_size, name=name
163
)
0 commit comments