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
When I used Mamba2 for tasks related to ultra long sequence inputs, I found that it would result in GPU memory depletion errors. SSD should theoretically be able to handle inputs of infinite length. Every time an error is reported in the mamba_stplit_comv1d_scan_combined() function
The text was updated successfully, but these errors were encountered:
Mamba2 still uses extra memory to store hidden states in between chunks. If your chunk size is too small, then you could be creating a bunch of extra tensors that take up memory. It should also be noted that increasing the chunk_size too large could slow down the kernels which work better for shorter lengths.
When I used Mamba2 for tasks related to ultra long sequence inputs, I found that it would result in GPU memory depletion errors. SSD should theoretically be able to handle inputs of infinite length. Every time an error is reported in the mamba_stplit_comv1d_scan_combined() function
The text was updated successfully, but these errors were encountered: