https://github.com/giovannisorice/parallelassigment
Assignment 1 of Parallel and Distributed Systems: Paradigms and Models course
https://github.com/giovannisorice/parallelassigment
c-plus-plus gameoflife openmp parallel sequencial thread
Last synced: 8 months ago
JSON representation
Assignment 1 of Parallel and Distributed Systems: Paradigms and Models course
- Host: GitHub
- URL: https://github.com/giovannisorice/parallelassigment
- Owner: GiovanniSorice
- Created: 2020-04-11T15:07:01.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-29T08:53:12.000Z (over 5 years ago)
- Last Synced: 2025-01-05T04:33:02.738Z (10 months ago)
- Topics: c-plus-plus, gameoflife, openmp, parallel, sequencial, thread
- Language: C++
- Size: 2.13 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ParallelAssigment
Assignment 1 and 2 of Parallel and Distributed Systems: Paradigms and Models course
The first assignment was to made a simplified and parallel version of the Game of Life. There are 4 version GoLSeq, GoLThread,GoLOMP and GoLPool in which there are respectively
the implementation of the sequential code, parallel code with c++ standard thread used as fork-join, parallel code with OpenMP and parallel code with c++ standard thread used as a pool of
worker and queue of tasks. For more info see the [report](/GoL/report/Report.pdf).
The second assignment was to develop two implementations for the problem of finding prime numbers among a given range, using different patterns provided by the [FastFlow library](http://calvados.di.unipi.it/).