https://github.com/sameetasadullah/consensus-problem-using-mpi
Program coded in C++ language to solve the consensus problem between multiple threads using MPI
https://github.com/sameetasadullah/consensus-problem-using-mpi
consensus-problem cpp linux mpi mpi-parallelization ubuntu
Last synced: 11 months ago
JSON representation
Program coded in C++ language to solve the consensus problem between multiple threads using MPI
- Host: GitHub
- URL: https://github.com/sameetasadullah/consensus-problem-using-mpi
- Owner: SameetAsadullah
- Created: 2022-08-14T19:17:00.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-14T19:20:38.000Z (over 3 years ago)
- Last Synced: 2025-01-21T17:51:08.382Z (about 1 year ago)
- Topics: consensus-problem, cpp, linux, mpi, mpi-parallelization, ubuntu
- Language: C++
- Homepage:
- Size: 45.9 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Consensus Problem using MPI
### Description
Program coded in `C++ language` to solve the `Consensus Problem` between `Multiple Threads` using `MPI`.
### Manual
1) Use following command to `Compile the Code`:
```
mpic++ main.cpp -o main
```
2) Use following commands to `Execute the Code`. Here 5 represents total number of processes to create:
```
mpiexec -n 5 -f machinefile ./main
```
### Working Screenshot