Earlier quoted context omitted.
https://stackoverflow.com/questions/45373679/why-is-it-faste...
As per answer, the reason float is faster than in is because a) hardware companies provide float ALUs than integer ALUs and b) float FMA is a thing, while integer FMA isn't. Both are because currently most HPC-like loads use floats instead of integers, not because of intrinsic hardware reasons.
If this paper holds, I'd expect that's where custom accelerators will be heading.