OpenMP, Parallel Programming in C [Intro]

This is a post in which you will get the basic knowledge about the parallel programming concept. In this post we going to use the OpenMP model. This program is implemented in the C Language. Basically this programs demonstrates how the thread gets executed in different Cores of the processor. In this case, this program is executed in a Quad Core CPU, so it displays 4 threads from 0-3.

Screenshots[Demo]

Here the threads are executed randomly on each cores on the basics of their availability. This method by which threads get their processor can be known in detail by googling about ready queue.

The Code:

#include<stdio.h>
#include<omp.h>
int main()
{
int x;
#pragma omp parallel
{
x=omp_get_thread_num();
printf("Thread Is running at %dth processorn",x);
}
return 0;
}

Got Suggestions?
Comment them here !

Related posts

Leave a Comment