Add new example with implementation of Perlin Noise

~4.2x speedup versus serial on OSX / gcc.
~2.9x speedup versus serial on Windows / MSVC.
This commit is contained in:
Matt Pharr
2011-08-01 10:33:18 +01:00
parent a552927a6a
commit a4bb6b5520
10 changed files with 707 additions and 12 deletions

View File

@@ -57,6 +57,13 @@ Linux, a pthreads-based task system is used (tasks_pthreads.cpp). When
using tasks with ispc, no task system is mandated; the user is free to plug
in any task system they want, for ease of interoperating with existing task
systems.
Noise
=====
This example has an implementation of Ken Perlin's procedural "noise"
function, as described in his 2002 "Improving Noise" SIGGRAPH paper.
Options
=======