Course Solutions Uncategorized (Solved) : Example Attempts Show Use Parallel Construct However Generate Errors Compile Time Try Dete Q30985650 . . . .

(Solved) : Example Attempts Show Use Parallel Construct However Generate Errors Compile Time Try Dete Q30985650 . . . .

 

This example attempts to show use of the parallel for construct.However it will generate errors at compile time. Try to determinewhat is causing the error.

#include <omp.h>

#include <stdio.h>

#include <stdlib.h>

#define N 10

#define CHUNKSIZE 2

int main (int argc, char *argv[])

{

int i, chunk, tid;

float a[N], b[N], c[N];

/* Some initializations */

for (i=0; i < N; i++)

a[i] = b[i] = i * 1.0;

chunk = CHUNKSIZE;

#pragma omp parallel for

shared(a,b,c,chunk)

private(i)

schedule(static,chunk)

{

tid = omp_get_threads_num();

for (i=0; i < N; i++)

{

c[i] = a[i] + b[i];

printf(“tid= %d i= %d c[i]= %fn”, tid, i, c[i]);

}

} /* end of parallel for construct */

}

#include <omp . h> #include <stdio.h> #include <stdlib.h> #define 

<div class=

OR

PayPal Gateway not configured

OR

PayPal Gateway not configured

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

(Solved) : Class Testproblem3 Unittesttestcase Def Testapi Self P3 Sanity Test Testing Presense Metho Q37017701 . . . .(Solved) : Class Testproblem3 Unittesttestcase Def Testapi Self P3 Sanity Test Testing Presense Metho Q37017701 . . . .

<p><img alt="Problem 3 (20 points) Implement a queue abstract data type using the UnorderedList class." src="https://media.cheggcdn.com/media%2F1d1%2F1d1cb5df-35fb-4d69-9277-16f94be74696%2Fphp3s5ujy.png" style="height:100px;width:499px;" aria-describedby="d3f"/></p><p><img alt="Problems 2-4 ask you to implement three abstract data types using the