hello folks
findMax( float *data, int row, int col, int *rmax, int* cmax, float *val)
{
float max = -9999.0;
for (int i=0;i<rows; i++)
for (int j=0;j<cols; j++)
{
if (data[i*cols + j] > max)
{ max = data[i*cols +j;
rmax = cols;
cmax = rows;
}
}
}
}
plz some body give me an efficient assembly implementation for C6713 dsp. I have imp. it but it takes lot of time. If some one unroll this loop and schedule instructions properly so that all the registers are being exploited and calculations are done in minimum time.
its v urgent , so plz every do reply
thanx.