Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/andresilmor/n-body-problem-with-parallelization-in-language-c

Adaptation of N-Body problem in serial code (src: rosettacode.org) to Parallel Programming/Parallel Computing in Language C with pThreads.
https://github.com/andresilmor/n-body-problem-with-parallelization-in-language-c

c languagec multithreading nbody-simulation parallel-computing parallel-programming pthread pthreads

Last synced: 24 days ago
JSON representation

Adaptation of N-Body problem in serial code (src: rosettacode.org) to Parallel Programming/Parallel Computing in Language C with pThreads.

Awesome Lists containing this project

README

        

# N-Body-problem-with-Parallelization-in-Language-C

Exercise for Advanced Computing (Informatics MSc, ESTiG-IPB), in resume, the goal was to parallellize the N-Body problem made with serial code from [rosettacode.org](https://rosettacode.org/wiki/N-body_problem) to Parallel Programming/Parallel Computing in Language C, that parallelization should be dynamic, it means that we should not define a fix number of available threads (use of array of threads) and using the pThread library.