@AmazingThew Something life changing I learned early at NVIDIA is that "putting something in hardware" (creating an application-specific integrated circuit, ASIC) usually does not make a program faster. (thread):
@AmazingThew At a very high level, processor design is limited by three main factors:

1. Physical area; there's a limit on how large the die/mask can be
2. Power/heat dissipation ("Thermal Design Power" TDP). If you can't get power in or heat out, the chip won't work
3. Clock speed/voltage
@AmazingThew Microprocessor architects are, generally speaking, some of the smartest engineers I've met, at every company. They've already optimized these constraints for the chip. No slack.

So, when someone proposes a new hardware feature, it has to REPLACE existing functionality.
@AmazingThew That usually means taking away general purpose computation (or cache, on a CPU) to get back area for special purpose computation.

If you know that your chip executes 95% FFTs, that *might* be worthwhile to replace the general math and logic circuits with FFT circuits.
@AmazingThew I say "might" because a GPU is already amortizing the dispatch and other shared logic area over 32 ALUs and sharing memory interfaces. So, you might only save about 1/33->i.e., get a 3% improvement. If you weren't using, say, division, then yes, you can redploy the DIV area, etc.
@AmazingThew And if your FFT is memory bound, then special purpose compute doesn't help at all.

Now, if your program spends 30% of its cycles on FFT and 70% on something else, then taking away general purpose computation to get special purpose computation is not a good strategy.
@AmazingThew It turns out that for most of the operations you'd (I'd!) want to magically make faster on a GPU with new circuits, you either aren't willing to pay the price of what you'd make slower as a tradeoff, or wouldn't get a big enough speedup to matter.
@AmazingThew If you want GPU acceleration of FFT, I recommend:

docs.nvidia.com/cuda/cufft/ind…

If you want FFT to be 10x faster than *that*; well, I'd really like that too, but I don't know a chip design where a real program would be faster if the FFT was an ASIC that replaced general compute area.
@AmazingThew For fast CPU FFT, I've previously used fftw.org
@AmazingThew Taking the RTX GPUs as an example, you can look at the history of published designs from NVIDIA and other institutions at High Performance Graphics and other venues.

Nobody directly translated their favorite ray tracing software into a circuit and shipped it.
@AmazingThew Hardware ray tracing (which has come and gone many times in recent history, including designs from Utah, Caustic, and Imagination) was a challenge of finding the design that would optimize for minimizing area, bandwidth, and area...and provide a powerful programming model.
@AmazingThew So was the rasterizer, the texture unit, tensor cores, and previous dedicated pixel and vertex shaders, and a lot of processing units that aren't visible in the high level programming model.
@AmazingThew I'm so impressed with what hardware designers are able to accomplish in each generation. They squeeze existing functionality into ever more efficient implementations, and then find a narrow slice of a new feature that accelerates the critical step, to slip into the empty space!
@AmazingThew In general, to help make something faster on a GPU, there are two things that you can do:

1. Reduce the memory demand until it is compute bound. For FFT: can you get away with 8-bit? 16F?
@AmazingThew 2. Publish clever algorithms or designs for the compute part. The last, engineering step is usually proprietary, but industry relies on researchers across the field to get them into the right ballpark. Modern GPUs are based on decades of SIGGRAPH papers, not created from thin air
@AmazingThew (Quite often, the value of research papers is ruling out not-quite-practical approaches so architects know where not to focus. Every research paper presents itself as a success: "5x!".

But knowing design A is a 5x max speedup is enough to tell others to look for 10x elsewhere😀)

• • •

Missing some Tweet in this thread? You can try to force a refresh
 

Keep Current with Morgan McGuire

Morgan McGuire Profile picture

Stay in touch and get notified when new unrolls are available from this author!

Read all threads

This Thread may be Removed Anytime!

PDF

Twitter may remove this content at anytime! Save it as PDF for later use!

Try unrolling a thread yourself!

how to unroll video
  1. Follow @ThreadReaderApp to mention us!

  2. From a Twitter thread mention us with a keyword "unroll"
@threadreaderapp unroll

Practice here first or read more on our help page!

More from @CasualEffects

21 Mar
When coding, I always maintain a journal in the repo (I happen to use Markdeep for this now) with a TODO list.

Tasks are at the level of one hour for "today" stuff, one day for next week, and then week- or longer level tasks.

I expand the details for the next week on Friday.
I expand the one-day tasks into one hour either first or last thing in a day, but ideally as my last action so that I start each day with clear direction.
When I start working on the top, ~1-hour item, on the list, I immediately expand it recursively until the subtasks are completely braindead to implement.

I do all of the hard part of programming here, in the TODO list, figuring out the library calls, designing the APIs, etc.
Read 7 tweets
15 Oct 18
A thread of notes on the ACM ToG Production Rendering special edition from @Peter_shirley & me. dl.acm.org/citation.cfm?i…
Solid Angle Arnold: kicked off the path tracer revolution

Sony Pictures Imageworks Arnold: fork of the SA renderer specialized for Sony

Manuka: Weta's path tracer

Hyperion: Disney's relatively small path tracer

Renderman: Pixar's rebooted renderer, now using path tracing
All use path tracing (mostly forward-only with a few photon maps), subdivision surfaces + instancing, per-face textures via PTex, SIMD accelerated CPU/GPU ray casts, most have explicit direct illumination, special case volumes and hair.
Read 12 tweets

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3/month or $30/year) and get exclusive features!

Become Premium

Too expensive? Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal Become our Patreon

Thank you for your support!

Follow Us on Twitter!