mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
12 lines
163 B
C
12 lines
163 B
C
#include <stdlib.h>
|
|
#include <omp.h>
|
|
|
|
int main(int argc, char ** argv) {
|
|
int sum = 0;
|
|
#pragma omp parallel for
|
|
for (int i=0; i < 100; i++)
|
|
sum += i;
|
|
|
|
}
|
|
|