TASK 5: Write a program with a meaningful loop calculation that uses a parallelized loop. Explain the way the loop works and show it by the output of the program. Measure the time taken by your code in seconds. Submit the code, the explanation and a screenshot of the run.
TASK 5: Write a
Step 1
Parallelized loop means, The loop which doesn't depend on the previous loop and all iterations are independent.
That means, if we take a for loop as an example:
for(int i=0;i<n;i++){
a[i]=i+50;
}
In this loop each iteration is not depend on any previous levels.
If we consider another example:
for(int i=0;i<n;i++){
a[i]=a[i-1]+1;
}
In this it is depend on previous iteration.so it is not comes under parallelized loop.
Step 2
Now, consider a C program with parallelized loop:
#include<stdio.h>
int main(){
int n, i, a[100];
printf("Enter a number: ");
scanf("%d",&n);
for(i=0; i<n; i++){
a[i] = i+50;
printf("%d ",a[i]);
}
return 0;
}
Step by step
Solved in 3 steps with 1 images