0

this is what i found: " Cores perform only single-precision floating-point arithmetics. There is 1 double-precision floating-point unit. "

is this true for all compute capabilities (versions) ?

user1281071
  • 875
  • 2
  • 13
  • 23
  • 2
    http://stackoverflow.com/questions/2816992/double-precision-floating-point-in-cuda – Roger Dahl Mar 26 '12 at 17:21
  • in NVIDIA CUDA C Programming Guide 4.1 section F.4.1 p.144 is written "32 CUDA cores for integer and floating-point arithmetic operations". by "floating-point" they mean both single and double? – user1281071 Mar 26 '12 at 21:22

2 Answers2

2

Single and double precision floating point accuracy and performance has continuously evolved and is different for each of the compute capabilities.

http://developer.download.nvidia.com/assets/cuda/files/NVIDIA-CUDA-Floating-Point.pdf

Roger Dahl
  • 15,132
  • 8
  • 62
  • 82
  • Start with Appendix F.1 to see if your GPU supports double. – Tom Mar 26 '12 at 17:49
  • right now i am looking for new GPU and i am mainly focused on double precision calculations. so i would like to know if there is GPU which has more then one double-precision floating-point unit per MP. – user1281071 Mar 26 '12 at 20:16