GPU Gems 2 Gets Call for Participation 11
An anonymous reader writes "Following the publication of GPU Gems: Programming Techniques, Tips, and Tricks for Real-Time Graphics, NVIDIA has decided to produce a second GPU Gems volume in order to showcase the best new ideas and techniques for the latest programmable GPUs. Tentatively titled GPU Gems II: Techniques for Graphics and Compute Intensive Programming, NVIDIA is looking for innovative ideas from developers who are using GPUs in new ways to create stunning graphics and cutting-edge applications. GPU Gems II will have an increased focus on chapters exploring non-graphics applications of the computational capabilities of GPU hardware (learn more at www.GPGPU.org). If you would like to participate, please read through the submission guidelines and send an e-mail to articlesubmissions@nvidia.com with your proposed chapter title as the subject line, and the required description in the e-mail body. The deadline for submissions is Monday, August 16, 2004."
64 bit calculation (Score:4, Interesting)
Re:64 bit calculation (Score:2)
You'd have to add at least another stage to every comparator, adder, etc, and that doesn't just use up more silicon.. that also increases latencies.
Re:64 bit calculation (Score:1)
Re:64 bit calculation (Score:2)
Also talking out of my ass.
Re:64 bit calculation (Score:2)
Even now, only the NV40 offers what you could honestly call single-precision floats. The ATI cards give you 24 bits for the whole value.
Re:64 bit calculation (Score:3, Informative)
Re:64 bit calculation (Score:1)
32 bits is enough for a GPU. why? the point of a GPU is to produce good-looking graphics fast. precision problems with single precision IEEE754s are by and large far too small to notice once the end result is shipped off to a screen as color. so, 64 bits is killing a fly with a sledgehammer in a GPU.
the brightening example holds no water. 24 bits of intensity precision, mapped to the gamut of a crt or lcd, is orders of magnitude more than necessary for ext
Re:64 bit calculation (Score:3, Informative)
In any case, the Nvidia 6800 does 64bit color NOW and 64bit is going to be pretty much standard equipement across the board within the ne
Re:64 bit calculation (Score:2)