Commit fec0cc86 authored by vaclav's avatar vaclav
Browse files
parents 0cd7a9f2 c0727907
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -62,9 +62,6 @@ def collect_for_sanitizer_test(file):
    )
    files_to_archive = find_failed_files_for_sanitizer_test(console_log, "logs")

    print("files_to_archive_noPLC:", files_to_archive_noPLC)
    print("files_to_archive:", files_to_archive)

    log_folder = pathlib.Path("./LOGS_PLC")
    log_folder.mkdir()
    for test in files_to_archive.keys():
+11 −0
Original line number Diff line number Diff line
@@ -1614,6 +1614,17 @@ static void ivas_param_mc_get_mixing_matrices(

        matrix_product_diag( mat_mult_buffer1, nY_band, nX, 0, proto_matrix_ptr, nY_band, nX, 1, Cproto_diag );

#ifdef FIX_I220_PARAMMC_CPROTO
        /* make sure we have no negative entries in Cproto_diag due to rounding errors */
        for ( ch_idx1 = 0; ch_idx1 < nY_band; ch_idx1++ )
        {
            if ( Cproto_diag[ch_idx1] < 0.0f )
            {
                Cproto_diag[ch_idx1] = 0.0f;
            }
        }
#endif

        /* Computing the mixing matrices */

        /* bands with decorr */