You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rust/src/lib.rs allocates a PyBytes per tape and Python does b''.join(...). For large soups this churns memory. Return one flat buffer + lengths (or write into a preallocated array) to cut allocations.
rust/src/lib.rs allocates a PyBytes per tape and Python does b''.join(...). For large soups this churns memory. Return one flat buffer + lengths (or write into a preallocated array) to cut allocations.