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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [libgomp/] [testsuite/] [libgomp.c++/] [sections-1.C] - Diff between revs 38 and 154

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

Rev 38 Rev 154
/******************************************************************************
/******************************************************************************
* 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 
#include 
#include 
#include 
#include 
#include 
#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
for (i=0; 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
      for (i=0; 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
      for (i=0; 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.