Additional ResourcesNIXL Connect API

Read Operation

View as Markdown

An operation which transfers data from a remote worker to the local worker.

To create the operation, NIXL metadata (RdmaMetadata) from a remote worker’s ReadableOperation along with a matching set of local Descriptor objects which reference memory intended to receive data from the remote worker must be provided. The NIXL metadata must be transferred from the remote to the local worker via a secondary channel, most likely HTTP or TCP+NATS.

Once created, data transfer will begin immediately. Disposal of the object will instruct the NIXL subsystem to cancel the operation, therefore the operation should be awaited until completed unless cancellation is intended.

Example Usage

1 async def read_from_remote(
2 self,
3 remote_metadata: dynamo.nixl_connect.RdmaMetadata,
4 local_tensor: torch.Tensor
5 ) -> None:
6 descriptor = dynamo.nixl_connect.Descriptor(local_tensor)
7
8 with await self.connector.begin_read(remote_metadata, descriptor) as read_op:
9 # Wait for the operation to complete writing data from the remote worker to local_tensor.
10 await read_op.wait_for_completion()

Methods

cancel

1def cancel(self) -> None:

Instructs the NIXL subsystem to cancel the operation. Completed operations cannot be cancelled.

wait_for_completion

1async def wait_for_completion(self) -> None:

Blocks the caller until the memory from the remote worker has been transferred to the provided buffers.

Properties

status

1@property
2def status(self) -> OperationStatus:

Returns OperationStatus which provides the current state (aka. status) of the operation.