Logo 
Search:

C Programming Articles

Submit Article
Home » Articles » C Programming » Parallel Processing ProgramsRSS Feeds

Program of forward scheduling for unequal distribution

Posted By: Lujza Fischer     Category: C Programming     Views: 1372

Program of forward scheduling for unequal distribution.

Code for Program of forward scheduling for unequal distribution in C Programming

#include<stdio.h>
#include "headfork.h"// included in attachment
#include "headbar.h"
#include "headshr.h"

main()
{
    int *x,*xsav,*imin,*imax,*bar;
    int shmid1,shmid2,shmid3,shmid4;
    int npts,np,id,n,i;

    x=shared(sizeof(int)*10,&shmid1);
    xsav=shared(sizeof(int)*2,&shmid2);
    imin=shared(sizeof(int)*2,&shmid3);
    imax=shared(sizeof(int)*2,&shmid4);

    printf("Enter the size of array: ");
    scanf("%d",&n);

    printf("Enter the array elements :\n");
    for(i=1;i<=n;i++)
        scanf("%d",(x+i));

    printf("Enter the no.of proc :" );
    scanf("%d",&np);

    bar=bar_init(np);

    id=p_fork(np);

    npts=n/np;

    if(id!=0)
        imin[id]=id*npts;
    else
        imin[id]=1;

    if(id!=(np-1))
        imax[id]=(id+1)*npts-1;
    else
        imax[id]=n;

    xsav[id]=x[imax[id]+1];

    barrier(bar);

    for(i=imin[id];i<=imax[id]-1;i++)
        x[i]=x[i+1];

    x[imax[id]]=xsav[id];

    p_join(np,id);

    printf("After forward dependency : ");

    for(i=1;i<n;i++)
        printf("\n%d",x[i]);
}
  
Share: 


Didn't find what you were looking for? Find more on Program of forward scheduling for unequal distribution Or get search suggestion and latest updates.

Lujza Fischer
Lujza Fischer author of Program of forward scheduling for unequal distribution is from Frankfurt, Germany.
 
View All Articles

 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!