▲ | skywal_l 3 days ago | ||||||||||||||||
I am a complete noob in GPU but is AMDGCN the older generation with the new one being RDNA? If you generate a binary for AMDGCN, will it run on the newest cards? Also, I though that these GPU ISAs were "proprietary". I wonder how reliable the binary generation can be. | |||||||||||||||||
▲ | AliChraghi 3 days ago | parent [-] | ||||||||||||||||
AMD ISAs are changing for almost every generation so LLVM[1] continues to keep the architecture name "amdgcn" and handle the variation based on the model flag (e.g., -mcpu=gfx1030 for RDNA2, -mcpu=gfx1100 for RDNA3). > I though that these GPU ISAs were "proprietary" PTX spec[2] is publicly available but the actual hardware assembly (SASS) is not. Although i believe Nsight allows you to view it. | |||||||||||||||||
|