The Fermi GPUs have Special Function Units (SFUs) to (quoting the NVIDIA White Paper on Fermi) "execute transcendental instructions such as sin, cosine, reciprocal, and square root. Each SFU executes one instruction per thread, per clock".
My questions are:
Do SFUs operate on single and double precision numbers or on single precision only?
Do SFUs introduce any loss of accuracy in the computations?
Are SFUs related to the use of intrinsics like __sin()
, __cos()
, etc.?
Are the functionalities of the Kepler SFUs the same as for the Fermi SFUs?
Thank you very much in advance for any answer.