https://github.com/yukunj/parallel-computing
Parallel Computing with MPI and OpenMP
https://github.com/yukunj/parallel-computing
nyu parallel-computing
Last synced: 2 days ago
JSON representation
Parallel Computing with MPI and OpenMP
- Host: GitHub
- URL: https://github.com/yukunj/parallel-computing
- Owner: YukunJ
- Created: 2020-04-12T23:12:34.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-02-05T22:07:41.000Z (over 3 years ago)
- Last Synced: 2025-03-27T02:31:06.335Z (7 months ago)
- Topics: nyu, parallel-computing
- Language: C
- Homepage:
- Size: 1.27 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Parallel Computing Spring 2020
This folder is for the course at NYU Courant Spring 2020, when I was a junior undergrad student.
Feel free to email me at jy2363@nyu.edu for any more information---
### Lab1 : MPI Language: CPurpose:
implement a parallel code to compute the number lying in range 2 to N
that is disivisible by a or b or c
where N a b c is command line input provided by the user.### Lab2 : OpenMP Language: C
Purpose:
implement a parallel code to compute prime number lying between 2 to N
using Sieve's algorithm. Essentially the key parallelable part is at the inner
for loop.