#include <iostream>
#include <mutex>
#include <tbb/tbb.h>
#include <tbb/concurrent_vector.h>
Go to the source code of this file.
◆ main()
◆ ParallelFib()
long ParallelFib |
( |
long |
n | ) |
|
◆ serial_fibonacci_loop()
template<typename Type >
Type serial_fibonacci_loop |
( |
Type |
n | ) |
|
◆ serial_fibonacci_recursion()
template<typename Type >
Type serial_fibonacci_recursion |
( |
Type |
n | ) |
|
◆ test_fibonacci_lambda()
void test_fibonacci_lambda |
( |
| ) |
|
◆ test_parallel_fibonacci()
void test_parallel_fibonacci |
( |
| ) |
|
◆ test_serial_fibonacci()
void test_serial_fibonacci |
( |
| ) |
|
◆ test_tbb()
◆ CutOff