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

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

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: C

Purpose:

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.