Created
July 1, 2019 13:59
-
-
Save vnkdj5/8f4b1317f606b8f55342cc1a01884f39 to your computer and use it in GitHub Desktop.
MPI BInary Search
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//============================================================================ | |
// Name : MPI_binary_search.cpp | |
// Author : VaibhavK | |
// Version : | |
// Copyright : Way2TechIn | |
//============================================================================ | |
#include <iostream> | |
#include<mpi/mpi.h> | |
#include<cstdlib> | |
using namespace std; | |
void binarySearch(int *arr,int start, int end,int key,int rank) | |
{ | |
while(start<=end) | |
{ | |
int mid=(start+end)/2; | |
if(arr[mid]==key) | |
{ | |
cout<<"Element is Found by processor "<<rank<<" .\n"; | |
return; | |
} | |
else if(arr[mid]<key) | |
{ | |
start=mid+1; | |
} | |
else | |
{ | |
end=mid-1; | |
} | |
} | |
} | |
int main(int argc, char **argv) { | |
int n=4000; | |
int *arr=new int[n]; | |
for(int i=0;i<n;i++) | |
{ | |
arr[i]=i+1; | |
} | |
cout<<"here"; | |
int key=100; //element to search | |
MPI_Init(&argc, &argv); | |
int rank,size; | |
MPI_Comm_rank(MPI_COMM_WORLD, &rank); | |
MPI_Comm_size(MPI_COMM_WORLD, &size); | |
cout<<"Processor rank: "<<rank<<"\nSize : "<<size<<endl; | |
int blocks=2; | |
int blockSize=n/blocks; | |
if(rank==0) | |
{ | |
double start=MPI_Wtime(); | |
binarySearch(arr, rank*blockSize, (rank+1)*blockSize-1, key, rank); | |
double end=MPI_Wtime(); | |
cout<<"Execution time of Processor "<<rank<<" is "<<(end-start)*1000<<endl; | |
} | |
else if(rank==1) | |
{ | |
double start=MPI_Wtime(); | |
binarySearch(arr, rank*blockSize, (rank+1)*blockSize-1, key, rank); | |
double end=MPI_Wtime(); | |
cout<<"Execution time of Processor "<<rank<<" is "<<(end-start)*1000<<endl; | |
} | |
else if(rank==2) | |
{ | |
double start=MPI_Wtime(); | |
binarySearch(arr, rank*blockSize, (rank+1)*blockSize-1, key, rank); | |
double end=MPI_Wtime(); | |
cout<<"Execution time of Processor "<<rank<<" is "<<(end-start)*1000<<endl; | |
} | |
MPI_Finalize(); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment