1
Fork 0
mirror of https://github.com/Steffo99/unimore-hpc-assignments.git synced 2024-11-22 08:04:25 +00:00

init_array: Do not optimize, costs are greater than benefits

This commit is contained in:
Steffo 2022-11-15 19:46:23 +01:00
parent 7ae893d977
commit f48d351890
Signed by: steffo
GPG key ID: 6965406171929D01

View file

@ -24,11 +24,14 @@ static void init_array(int nx, int ny,
{
int i, j;
// TODO: Optimizable loop, every task has no dependencies on the other ones
for (i = 0; i < ny; i++)
// Parallelizing this causes a slowdown, as the cost of context-switches is greater than the cost of inlline execution
// #pragma omp parallel for num_threads(SOMETHING) schedule(static)
for (i = 0; i < ny; i++) {
x[i] = i * M_PI;
}
// TODO: Optimizable loop, every task has no dependencies on the other ones
// Same here, but many times more
// #pragma omp parallel for num_threads(SOMETHING) schedule(static)
for (i = 0; i < nx; i++)
for (j = 0; j < ny; j++)
A[i][j] = ((DATA_TYPE)i * (j + 1)) / nx;
@ -113,7 +116,7 @@ int main(int argc, char **argv)
/* Prevent dead-code elimination. All live-out data must be printed
by the function call in argument. */
polybench_prevent_dce(print_array(nx, POLYBENCH_ARRAY(y)));
/* Be clean. */
POLYBENCH_FREE_ARRAY(A);
POLYBENCH_FREE_ARRAY(x);