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
@vlad-penkin : that's a reproducer associated with PyTorch PR #135567 which changes how pytorch returns tensor's data_ptr. The following test in Huggingface accelerate fails after this PR:
@vlad-penkin : I've debugged this on my side and posted PR #2192. The issue was that triton calls PyLong_AsLongLong() to cast device memory pointers instead of PyLong_AsVoidPtr(). This fix did work for my failing test both with and without @guangyey change pytorch/pytorch#135567 on pytorch side. I hope this won't regress any tests on your side. Let's see...
@vlad-penkin : that's a reproducer associated with PyTorch PR #135567 which changes how pytorch returns tensor's data_ptr. The following test in Huggingface accelerate fails after this PR:
See details in pytorch/pytorch#135567 (review).
The text was updated successfully, but these errors were encountered: