https://github.com/akyoto/fine-grained-parallelism-tests
:bar_chart: Testing fine grained parallelism with C++ and Boost.
https://github.com/akyoto/fine-grained-parallelism-tests
Last synced: over 1 year ago
JSON representation
:bar_chart: Testing fine grained parallelism with C++ and Boost.
- Host: GitHub
- URL: https://github.com/akyoto/fine-grained-parallelism-tests
- Owner: akyoto
- Created: 2012-04-22T15:51:48.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2012-05-02T16:27:40.000Z (about 14 years ago)
- Last Synced: 2025-04-12T22:00:00.493Z (over 1 year ago)
- Language: C++
- Homepage:
- Size: 125 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
fine-grained-parallelism-tests
==============================
Testing fine grained parallelism with C++ and Boost.
Runtime fine grained parallelism: 895 ms
Runtime coarse grained parallelism: 1196 ms
Runtime single threaded: 1704 ms
N: 200000000 (calculations per thread)
M: 1 (number of repeated thread scheduling)
P: 2 (dual core)
FG.MT = Fine grained multithreading
CG.MT = Coarse grained multithreading
ST = Single threaded
Speedup: 1.90391 / 2
FG.MT needs 0.748328 (1/2) the time CG.MT needs.
FG.MT needs 0.525235 (1/2) the time ST needs.
FG.MT is 33.6313% faster than CG.MT.
FG.MT is 90.3911% faster than ST.