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
I added the ECA module to my model , but when I used DDP training i got a warning: UserWarning: Grad strides do not match bucket view strides.
This may indicate grad was not created according to the gradient layout contract, or that the param's strides changed since DDP was constructed.
This is not an error, but may impair performance.
grad.sizes() = [2, 1, 3], strides() = [3, 1, 1]
bucket_view.sizes() = [2, 1, 3], strides() = [3, 3, 1]
I found that it was caused by conv1d in ECA, but i can't fix this warning.
Anyone can tell me how to fix this problem?
The text was updated successfully, but these errors were encountered:
I added the ECA module to my model , but when I used DDP training i got a warning:
UserWarning: Grad strides do not match bucket view strides.
This may indicate grad was not created according to the gradient layout contract, or that the param's strides changed since DDP was constructed.
This is not an error, but may impair performance.
grad.sizes() = [2, 1, 3], strides() = [3, 1, 1]
bucket_view.sizes() = [2, 1, 3], strides() = [3, 3, 1]
I found that it was caused by conv1d in ECA, but i can't fix this warning.
Anyone can tell me how to fix this problem?
The text was updated successfully, but these errors were encountered: