Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 24 hours 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 12 years ago)
- Default Branch: master
- Last Pushed: 2012-05-02T16:27:40.000Z (over 12 years ago)
- Last Synced: 2024-05-21T03:57:31.370Z (6 months ago)
- Language: C++
- Homepage:
- Size: 125 KB
- Stars: 2
- Watchers: 3
- 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 msN: 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 threadedSpeedup: 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.