'Updt 07'

This commit is contained in:
Arkadiusz Hypki 2024-05-06 14:06:04 +02:00
parent fd575b08c1
commit 83e14be4ce
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,8 @@
Excercise 1
This is our quick tutorial.
Compile the code and see whether you get the same results.
Hints:
* add -fopenmp to gcc compiler

View File

@ -22,7 +22,7 @@ void sum() {
total_Sum = 0;
#pragma omp for
for(int i = 1; i <= 100; i++) {
for(int i = 1; i <= 10; i++) {
partial_Sum += i;
}