source: CIVL/examples/omp/region1.c@ 0a5fb11

1.23 2.0 acw/focus-triggers main test-branch
Last change on this file since 0a5fb11 was fd42b02, checked in by Matthew B. Dwyer <matthewbdwyer@…>, 11 years ago

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@2409 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 200 bytes
RevLine 
[fd42b02]1#include <omp.h>
2#define N 10
3
4int main (int argc, char * argv[]){
5 int i;
6 int a[N];
7
8#pragma omp parallel
9{
10 int max = N;
11
12#pragma omp for
13 for(i=0; i<max; i++)
14 a[i] = 0;
15
16 max = 0;
17}
18}
Note: See TracBrowser for help on using the repository browser.