Created
July 1, 2019 13:38
-
-
Save vnkdj5/bbcbd4e55be914ffa71052830e72ce19 to your computer and use it in GitHub Desktop.
Bubble Sort paralle OpenMP
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
#include <omp.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
void swap(); | |
int main (int argc, char *argv[]) { | |
int SIZE =1<<8; | |
int A[SIZE]; | |
for(int i=0;i<SIZE;i++) | |
{ | |
A[i]=rand()%SIZE; | |
} | |
//int A[5] = {6,9,1,3,7}; | |
int N = SIZE; | |
int i=0, j=0; | |
int first; | |
double start,end; | |
start=omp_get_wtime(); | |
for( i = 0; i < N-1; i++ ) | |
{ | |
first = i % 2; | |
#pragma omp parallel for default(none),shared(A,first,N) | |
for( j = first; j < N-1; j += 1 ) | |
{ | |
if( A[ j ] > A[ j+1 ] ) | |
{ | |
swap( &A[ j ], &A[ j+1 ] ); | |
} | |
} | |
} | |
end=omp_get_wtime(); | |
for(i=0;i<N;i++) | |
{ | |
printf(" %d",A[i]); | |
} | |
printf("\n-------------------------\n Time Parallel= %f",(end-start)); | |
} | |
void swap(int *num1, int *num2) | |
{ | |
int temp = *num1; | |
*num1 = *num2; | |
*num2 = temp; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
what does first do