search for: buffer_b

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

Did you mean: buffer_t
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, j, k; int **result = (int **)ma...