Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/andresilmor/n-body-problem-with-parallelization-in-language-c
- Owner: andresilmor
- License: mit
- Created: 2022-12-18T13:55:05.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-06T13:55:16.000Z (almost 2 years ago)
- Last Synced: 2023-11-17T00:07:19.871Z (about 1 year ago)
- Topics: c, languagec, multithreading, nbody-simulation, parallel-computing, parallel-programming, pthread, pthreads
- Language: C
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.