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
rocm (rocrand or rocblas or something like that) defaultly use AVX instructions.
When they are loaded by torch with rocm support, just import torch will crash everything.
Because it will call a asm instruction called vxorps which is AVX, but if the CPU does not support AVX for example G4930 , BOOM!
I change my CPU from G4930 to i3 9100, everything goes well after that.
Versions
As far as test, rocm 5.4.x and pytorch 2.0.0 at least has this problem.
The text was updated successfully, but these errors were encountered:
🐛 Describe the bug
rocm (rocrand or rocblas or something like that) defaultly use AVX instructions.
When they are loaded by torch with rocm support, just import torch will crash everything.
Because it will call a asm instruction called vxorps which is AVX, but if the CPU does not support AVX for example G4930 , BOOM!
I change my CPU from G4930 to i3 9100, everything goes well after that.
Versions
As far as test, rocm 5.4.x and pytorch 2.0.0 at least has this problem.
The text was updated successfully, but these errors were encountered: