Disabled multithreading of the kc loop

This commit is contained in:
Tyler Smith
2014-05-12 17:26:19 -05:00
parent 456df03721
commit bd1dc98ce5
3 changed files with 6 additions and 3 deletions

View File

@@ -110,7 +110,8 @@ void bli_gemm_thrinfo_free_paths( gemm_thrinfo_t** threads, dim_t num )
gemm_thrinfo_t** bli_create_gemm_thrinfo_paths( )
{
dim_t jc_way = bli_read_nway_from_env( "BLIS_JC_NT" );
dim_t kc_way = bli_read_nway_from_env( "BLIS_KC_NT" );
// dim_t kc_way = bli_read_nway_from_env( "BLIS_KC_NT" );
dim_t kc_way = 1;
dim_t ic_way = bli_read_nway_from_env( "BLIS_IC_NT" );
dim_t jr_way = bli_read_nway_from_env( "BLIS_JR_NT" );
dim_t ir_way = bli_read_nway_from_env( "BLIS_IR_NT" );

View File

@@ -110,7 +110,8 @@ void bli_herk_thrinfo_free_paths( herk_thrinfo_t** threads, dim_t num )
herk_thrinfo_t** bli_create_herk_thrinfo_paths( )
{
dim_t jc_way = bli_read_nway_from_env( "BLIS_JC_NT" );
dim_t kc_way = bli_read_nway_from_env( "BLIS_KC_NT" );
// dim_t kc_way = bli_read_nway_from_env( "BLIS_KC_NT" );
dim_t kc_way = 1;
dim_t ic_way = bli_read_nway_from_env( "BLIS_IC_NT" );
dim_t jr_way = bli_read_nway_from_env( "BLIS_JR_NT" );
dim_t ir_way = bli_read_nway_from_env( "BLIS_IR_NT" );

View File

@@ -111,7 +111,8 @@ void bli_trmm_thrinfo_free_paths( trmm_thrinfo_t** threads, dim_t num )
trmm_thrinfo_t** bli_create_trmm_thrinfo_paths( )
{
dim_t jc_way = bli_read_nway_from_env( "BLIS_JC_NT" );
dim_t kc_way = bli_read_nway_from_env( "BLIS_KC_NT" );
// dim_t kc_way = bli_read_nway_from_env( "BLIS_KC_NT" );
dim_t kc_way = 1;
dim_t ic_way = bli_read_nway_from_env( "BLIS_IC_NT" );
dim_t jr_way = bli_read_nway_from_env( "BLIS_JR_NT" );
dim_t ir_way = bli_read_nway_from_env( "BLIS_IR_NT" );