What are some practical problems that parallel computing, f#, and GPU-parallel processing might solve. - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T03:41:11Zhttp://stackoverflow.com/feeds/question/212347http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/212347/what-are-some-practical-problems-that-parallel-computing-f-and-gpu-parallel-pr2What are some practical problems that parallel computing, f#, and GPU-parallel processing might solve.Chris Ballance2008-10-17T14:20:39Z2008-10-21T10:54:00Z
<p>Recently WiFi encryption was brute forced by using the parellel processing power of the modern GPU <a href="http://is.gd/4fhb" rel="nofollow">http://is.gd/4fhb</a>. What other real-life problems do you think will benefit from similar techniques?</p>
http://stackoverflow.com/questions/212347/what-are-some-practical-problems-that-parallel-computing-f-and-gpu-parallel-pr/212367#2123673Answer by Oli for What are some practical problems that parallel computing, f#, and GPU-parallel processing might solve.Oli2008-10-17T14:25:06Z2008-10-17T14:25:06Z<p>Most batch-processing tasks can be parallised and are well suited to the stream processors in GPUs. Folding. Seti. All those gubbins are already working well on GPUs.</p>
http://stackoverflow.com/questions/212347/what-are-some-practical-problems-that-parallel-computing-f-and-gpu-parallel-pr/212376#2123764Answer by basszero for What are some practical problems that parallel computing, f#, and GPU-parallel processing might solve.basszero2008-10-17T14:28:28Z2008-10-17T14:28:28Z<p>Image processing which is just fancier signal processing which is massively parallel math.</p>
<p>given that, perhaps face recognition, voice recognition, video decode/encode, audio decode/encode, encryption/decryption</p>
http://stackoverflow.com/questions/212347/what-are-some-practical-problems-that-parallel-computing-f-and-gpu-parallel-pr/221433#2214332Answer by TraumaPony for What are some practical problems that parallel computing, f#, and GPU-parallel processing might solve.TraumaPony2008-10-21T10:45:46Z2008-10-21T10:54:00Z<ul>
<li>Computational fluid dynamics</li>
<li>Physics processing</li>
<li>Ray tracing</li>
<li>Data mining</li>
<li>Medical imaging</li>
<li>Control engineering software</li>
<li>Digital signal processing</li>
<li>Bioinformatics</li>
</ul>
<p>In fact, check out <a href="http://en.wikipedia.org/wiki/GPGPU#Applications" rel="nofollow">this page</a> for a lot more examples of where GPGPU has been used.</p>
<p>To name a few.</p>