Commit 20ada4a2 authored by Fabian Bauer's avatar Fabian Bauer Committed by Manuel Jander
Browse files

add true single cycle commands

parent 7ba0f2ac
Loading
Loading
Loading
Loading
+14 −2
Original line number Diff line number Diff line
@@ -2144,10 +2144,13 @@ static void compute_cov_mtx_fx(
    Word16 freq;
    int k;
    int i, j;
    Word64 temp64_1_r_acc, temp64_1_i_acc;
    Word16 tmp_16;
#if 1
    Word16 temp_exp = add( 1, shl( inp_exp, 1 ) );
#else
    Word16 temp_exp = shl( inp_exp, 1 );

#endif
    Word64 temp64_1_r_acc, temp64_1_i_acc;

    FOR( i = 0; i < N; i++ )
    {
@@ -2166,11 +2169,19 @@ static void compute_cov_mtx_fx(

                FOR( freq = brange[0]; freq < brange[1]; freq++ )
                {
#if 1
                    temp64_1_r_acc = W_mac0_32_32( temp64_1_r_acc, si[i][freq], si[j][freq] ); // exp:2*inp_exp
                    temp64_1_r_acc = W_mac0_32_32( temp64_1_r_acc, sr[i][freq], sr[j][freq] ); // exp:2*inp_exp

                    temp64_1_i_acc = W_mac0_32_32( temp64_1_i_acc, si[i][freq], sr[j][freq] );
                    temp64_1_i_acc = W_msu0_32_32( temp64_1_i_acc, sr[i][freq], si[j][freq] );
#else
                    temp64_1_r_acc = W_mac_32_32( temp64_1_r_acc, si[i][freq], si[j][freq] ); // exp:2*inp_exp
                    temp64_1_r_acc = W_mac_32_32( temp64_1_r_acc, sr[i][freq], sr[j][freq] ); // exp:2*inp_exp

                    temp64_1_i_acc = W_mac_32_32( temp64_1_i_acc, si[i][freq], sr[j][freq] );
                    temp64_1_i_acc = W_sub( temp64_1_i_acc, W_mult_32_32( sr[i][freq], si[j][freq] ) );
#endif
                }

                tmp_16 = W_norm( temp64_1_r_acc );
@@ -2193,6 +2204,7 @@ static void compute_cov_mtx_fx(
}



#else
/* Compute covariance matrix, i.e., xT * conj(x), and accumulate to the output */
static void compute_cov_mtx_fx(