This is an OpenCL artifact, not a Mathematica issue. Mathematica talks to a GPU device using vendor driver APIs such as CUDA or OpenCL. In this case, the information comes through an OpenCL call.
OpenClGetDeviceInfo (..)
with request for CL_DEVICE_MAX_COMPUTE_UNITS
The OpenCL driver says there are 13 SMUs, each of which can run 32 threads. Therefore, the number 416 calculated units. The OpenCL specification is unclear as to what a computing unit is. So OpenCl gives the sum of the SMU * Warp size. OpenCL does the same as AMD, reporting 28 computational units for the 7950, which have 1792 stream units. AMD 79xx launches 64 threads for SMU.
source share