This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS/TMS320C6657: I find a bug

Part Number: TMS320C6657

Tool/software: Code Composer Studio

Hi
    When I use the dsplib_c66x_3_4_0_4 software package in ti-processor-sdk-rtos-c665x-evm-06.00.00.07-Windows-x86-Install.exe, I find a bug in file DSPF_dp_mat_mul_gemm_cn.cas follows:
 
void DSPF_dp_mat_mul_gemm_cn(double *x1, double const a, const int r1, const int c1,
    double *x2, const int c2, double *y)
{
    int i, j, k;
    double sum;
 
    for (i = 0; i < r1; i++) {
      for (j = 0; j < c2; j++) {
        sum = 0;
        for (k = 0; k < c1; k++) {
           sum += x1[k + i * c1] * x2[k + j * c1];    // shoud be  sum += x1[k + i * c1] * x2[j + k * c1];
        }    
        y[i + j * r1] += a * sum ;
      }
    }
}

    would you see if they are right?
    Thank you!