| /oneTBB/examples/parallel_for/tachyon/src/ |
| H A D | trace.serial.cpp | 80 ray primary, sample; in render_one_pixel() local 104 sample = primary; /* copy the regular primary ray to start with */ in render_one_pixel() 105 sample.serial = serial; in render_one_pixel() 108 sample.d.x += ((std::rand() % 100) - 50) / jitterscale; in render_one_pixel() 109 sample.d.y += ((std::rand() % 100) - 50) / jitterscale; in render_one_pixel() 110 sample.d.z += ((std::rand() % 100) - 50) / jitterscale; in render_one_pixel() 113 avcol = trace(&sample); in render_one_pixel() 115 serial = sample.serial; /* update our overall serial # */ in render_one_pixel()
|
| H A D | trace.omp.cpp | 81 ray primary, sample; in render_one_pixel() local 105 sample = primary; /* copy the regular primary ray to start with */ in render_one_pixel() 106 sample.serial = serial; in render_one_pixel() 110 sample.d.x += ((rand() % 100) - 50) / jitterscale; in render_one_pixel() 111 sample.d.y += ((rand() % 100) - 50) / jitterscale; in render_one_pixel() 112 sample.d.z += ((rand() % 100) - 50) / jitterscale; in render_one_pixel() 115 avcol = trace(&sample); in render_one_pixel() 117 serial = sample.serial; /* update our overall serial # */ in render_one_pixel()
|
| H A D | trace.tbb1d.cpp | 88 ray primary, sample; in render_one_pixel() local 112 sample = primary; /* copy the regular primary ray to start with */ in render_one_pixel() 113 sample.serial = serial; in render_one_pixel() 117 sample.d.x += ((rand() % 100) - 50) / jitterscale; in render_one_pixel() 118 sample.d.y += ((rand() % 100) - 50) / jitterscale; in render_one_pixel() 119 sample.d.z += ((rand() % 100) - 50) / jitterscale; in render_one_pixel() 122 avcol = trace(&sample); in render_one_pixel() 124 serial = sample.serial; /* update our overall serial # */ in render_one_pixel()
|
| H A D | trace.threads.cpp | 92 ray primary, sample; in render_one_pixel() local 116 sample = primary; /* copy the regular primary ray to start with */ in render_one_pixel() 117 sample.serial = serial; in render_one_pixel() 121 sample.d.x += ((rand() % 100) - 50) / jitterscale; in render_one_pixel() 122 sample.d.y += ((rand() % 100) - 50) / jitterscale; in render_one_pixel() 123 sample.d.z += ((rand() % 100) - 50) / jitterscale; in render_one_pixel() 127 avcol = trace(&sample); in render_one_pixel() 129 serial = sample.serial; /* update our overall serial # */ in render_one_pixel()
|
| H A D | trace.taskq.cpp | 88 ray primary, sample; in render_one_pixel() local 112 sample = primary; /* copy the regular primary ray to start with */ in render_one_pixel() 113 sample.serial = serial; in render_one_pixel() 117 sample.d.x += ((rand() % 100) - 50) / jitterscale; in render_one_pixel() 118 sample.d.y += ((rand() % 100) - 50) / jitterscale; in render_one_pixel() 119 sample.d.z += ((rand() % 100) - 50) / jitterscale; in render_one_pixel() 122 avcol = trace(&sample); in render_one_pixel() 124 serial = sample.serial; /* update our overall serial # */ in render_one_pixel()
|
| H A D | trace.threads2d.cpp | 95 ray primary, sample; in render_one_pixel() local 119 sample = primary; /* copy the regular primary ray to start with */ in render_one_pixel() 120 sample.serial = serial; in render_one_pixel() 124 sample.d.x += ((rand() % 100) - 50) / jitterscale; in render_one_pixel() 125 sample.d.y += ((rand() % 100) - 50) / jitterscale; in render_one_pixel() 126 sample.d.z += ((rand() % 100) - 50) / jitterscale; in render_one_pixel() 130 avcol = trace(&sample); in render_one_pixel() 132 serial = sample.serial; /* update our overall serial # */ in render_one_pixel()
|
| H A D | trace.tbb.cpp | 117 ray primary, sample; in render_one_pixel() local 141 sample = primary; /* copy the regular primary ray to start with */ in render_one_pixel() 142 sample.serial = serial; in render_one_pixel() 146 sample.d.x += ((rand() % 100) - 50) / jitterscale; in render_one_pixel() 147 sample.d.y += ((rand() % 100) - 50) / jitterscale; in render_one_pixel() 148 sample.d.z += ((rand() % 100) - 50) / jitterscale; in render_one_pixel() 151 avcol = trace(&sample); in render_one_pixel() 153 serial = sample.serial; /* update our overall serial # */ in render_one_pixel()
|
| /oneTBB/examples/getting_started/sub_string_finder/ |
| H A D | README.md | 1 # Sub_string_finder sample 16 * `make sub_string_finder` - builds all sample versions. 18 ## Running the sample
|
| /oneTBB/examples/parallel_reduce/convex_hull/ |
| H A D | README.md | 1 # Convex_hull sample 10 This sample contains two additional predefined build targets: 14 ## Running the sample
|
| /oneTBB/examples/migration/recursive_fibonacci/ |
| H A D | README.md | 1 # Fibonacci sample 10 ## Running the sample
|
| /oneTBB/examples/concurrent_hash_map/count_strings/ |
| H A D | README.md | 1 # Count_strings sample 10 ## Running the sample
|
| /oneTBB/examples/graph/logic_sim/ |
| H A D | README.md | 1 # Logic_sim sample 10 ## Running the sample
|
| /oneTBB/examples/test_all/fibonacci/ |
| H A D | README.md | 1 # Fractal sample 12 ## Running the sample
|
| /oneTBB/examples/parallel_for/game_of_life/ |
| H A D | README.md | 1 # Game_of_life sample 12 ## Running the sample
|
| /oneTBB/examples/graph/fgbzip2/ |
| H A D | README.md | 1 # fgbzip2 sample 13 ## Running the sample
|
| /oneTBB/examples/parallel_reduce/primes/ |
| H A D | README.md | 1 # Primes sample 10 ## Running the sample
|
| /oneTBB/examples/parallel_pipeline/square/ |
| H A D | README.md | 1 # Square sample 10 ## Running the sample
|
| /oneTBB/examples/graph/dining_philosophers/ |
| H A D | README.md | 1 # Dining_philosophers sample 12 ## Running the sample
|
| /oneTBB/examples/task_group/sudoku/ |
| H A D | README.md | 1 # Fractal sample 12 ## Running the sample
|
| /oneTBB/examples/graph/som/ |
| H A D | README.md | 1 # Self-Organizing Map (SOM) sample 14 ## Running the sample
|
| /oneTBB/examples/parallel_for_each/ |
| H A D | README.md | 4 | Code sample name | Description
|
| /oneTBB/examples/task_group/ |
| H A D | README.md | 4 | Code sample name | Description
|
| /oneTBB/examples/test_all/ |
| H A D | README.md | 4 | Code sample name | Description
|
| /oneTBB/examples/parallel_for/seismic/ |
| H A D | README.md | 1 # Seismic sample 12 ## Running the sample
|
| /oneTBB/examples/graph/binpack/ |
| H A D | README.md | 1 # Binpack sample 12 ## Running the sample
|