RoundRobinWriter¶
- class torchrl.data.replay_buffers.RoundRobinWriter(compilable: bool = False)[source]¶
A RoundRobin Writer class for composable replay buffers.
- Parameters:
compilable (bool, optional) – whether the writer is compilable. If
True
, the writer cannot be shared between multiple processes. Defaults toFalse
.
- add(data: Any) int | torch.Tensor [source]¶
Inserts one piece of data at an appropriate index, and returns that index.