mirror of
https://github.com/amd/blis.git
synced 2026-05-11 17:50:00 +00:00
Disabled multithreading of the kc loop
This commit is contained in:
@@ -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" );
|
||||
|
||||
@@ -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" );
|
||||
|
||||
@@ -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" );
|
||||
|
||||
Reference in New Issue
Block a user