Question: This function is adding two vectors, and the vectors size is always an even number. What optimization can it be done, using loop unrolling, reassociation,

This function is adding two vectors, and the vectors size is always an even number.

What optimization can it be done, using loop unrolling, reassociation, use of temporal variables. I cannot see how would you

optimize the function better. Thank you.

/***Adding two vectors***/

void addArrays(short v1[], short v2[], short vsum[], int n){ int i; for(i = 0; i < n; i++){ vsum[i] = v1[i] + v2[i]; } }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!