data icon indicating copy to clipboard operation
data copied to clipboard

Batcher hangs at batch_size=0

Open divyanshk opened this issue 10 months ago • 0 comments

🐛 Describe the bug

Repro


node = IterableWrapper(range(10))
node = ParallelMapper(node, map_fn=lambda x: x**2, num_workers=3, method="thread")
node = Batcher(node, batch_size=0)
loader = Loader(node)
result = list(loader)
...

Versions

v0.11

divyanshk avatar Mar 13 '25 23:03 divyanshk