An open API service indexing awesome lists of open source software.

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

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/).