source:
CIVL/mods/dev.civl.com/examples/omp/simple/nested.c.s@
cb4d4f4
| Last change on this file since cb4d4f4 was aad342c, checked in by , 3 years ago | |
|---|---|
|
|
| File size: 191 bytes | |
| Rev | Line | |
|---|---|---|
| [004075f] | 1 | //#include <omp.h> |
| 2 | ||
| 3 | int main (int argc, char *argv[]){ | |
| 4 | int sum = 0, localsum=0; | |
| 5 | int n = 10; | |
| 6 | int i; | |
| 7 | for(i = 0; i < n; i++){ | |
| 8 | localsum += i; | |
| 9 | } | |
| 10 | sum += localsum; | |
| 11 | } |
Note:
See TracBrowser
for help on using the repository browser.
