search for: vecsize

Displaying 1 result from an estimated 1 matches for "vecsize".

Did you mean: vec_size
2019 Oct 20
2
Matrix Multiplication not Vectorized using double pointers
Hello, My matrix multiplication code has variables allocated via double pointers on heap. The code is not getting vectorized. Following is the code. int **buffer_A = (int **)malloc(vecsize * sizeof(int *)); int **buffer_B = (int **)malloc(vecsize * sizeof(int *)); for(p = 0; p < vecsize; p++) { buffer_A[p] = (int *)malloc(vecsize * sizeof(int)); } for(p = 0; p < vecsize; p++) { buffer_B[p] = (int *)malloc(vecsize * sizeof(int)); } long i...