OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc4/] [libgomp/] [testsuite/] [libgomp.c/] [omp_workshare2.c] - Diff between revs 273 and 519

Only display areas with differences | Details | Blame | View Log

Rev 273 Rev 519
/******************************************************************************
/******************************************************************************
* FILE: omp_workshare2.c
* FILE: omp_workshare2.c
* DESCRIPTION:
* DESCRIPTION:
*   OpenMP Example - Sections Work-sharing - C/C++ Version
*   OpenMP Example - Sections Work-sharing - C/C++ Version
*   In this example, the OpenMP SECTION directive is used to assign
*   In this example, the OpenMP SECTION directive is used to assign
*   different array operations to threads that execute a SECTION. Each
*   different array operations to threads that execute a SECTION. Each
*   thread receives its own copy of the result array to work with.
*   thread receives its own copy of the result array to work with.
* AUTHOR: Blaise Barney  5/99
* AUTHOR: Blaise Barney  5/99
* LAST REVISED: 04/06/05
* LAST REVISED: 04/06/05
******************************************************************************/
******************************************************************************/
#include <omp.h>
#include <omp.h>
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>
#define N     50
#define N     50
 
 
int main (int argc, char *argv[]) {
int main (int argc, char *argv[]) {
 
 
int i, nthreads, tid;
int i, nthreads, tid;
float a[N], b[N], c[N];
float a[N], b[N], c[N];
 
 
/* Some initializations */
/* Some initializations */
for (i=0; i<N; i++)
for (i=0; i<N; i++)
  a[i] = b[i] = i * 1.0;
  a[i] = b[i] = i * 1.0;
 
 
#pragma omp parallel shared(a,b,nthreads) private(c,i,tid)
#pragma omp parallel shared(a,b,nthreads) private(c,i,tid)
  {
  {
  tid = omp_get_thread_num();
  tid = omp_get_thread_num();
  if (tid == 0)
  if (tid == 0)
    {
    {
    nthreads = omp_get_num_threads();
    nthreads = omp_get_num_threads();
    printf("Number of threads = %d\n", nthreads);
    printf("Number of threads = %d\n", nthreads);
    }
    }
  printf("Thread %d starting...\n",tid);
  printf("Thread %d starting...\n",tid);
 
 
  #pragma omp sections nowait
  #pragma omp sections nowait
    {
    {
    #pragma omp section
    #pragma omp section
      {
      {
      printf("Thread %d doing section 1\n",tid);
      printf("Thread %d doing section 1\n",tid);
      for (i=0; i<N; i++)
      for (i=0; i<N; i++)
        {
        {
        c[i] = a[i] + b[i];
        c[i] = a[i] + b[i];
        printf("Thread %d: c[%d]= %f\n",tid,i,c[i]);
        printf("Thread %d: c[%d]= %f\n",tid,i,c[i]);
        }
        }
      }
      }
 
 
    #pragma omp section
    #pragma omp section
      {
      {
      printf("Thread %d doing section 2\n",tid);
      printf("Thread %d doing section 2\n",tid);
      for (i=0; i<N; i++)
      for (i=0; i<N; i++)
        {
        {
        c[i] = a[i] * b[i];
        c[i] = a[i] * b[i];
        printf("Thread %d: c[%d]= %f\n",tid,i,c[i]);
        printf("Thread %d: c[%d]= %f\n",tid,i,c[i]);
        }
        }
      }
      }
 
 
    }  /* end of sections */
    }  /* end of sections */
 
 
    printf("Thread %d done.\n",tid);
    printf("Thread %d done.\n",tid);
 
 
  }  /* end of parallel section */
  }  /* end of parallel section */
 
 
  return 0;
  return 0;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.