mirror of
https://github.com/amd/blis.git
synced 2026-05-11 09:39:59 +00:00
Minor changes to knc configuration, including preference row major storage
Also fixed a bug in the knc micro-kernel where it would fail if k == 0
This commit is contained in:
@@ -264,6 +264,8 @@ void bli_dgemm_opt_30x8(
|
||||
auxinfo_t* data
|
||||
)
|
||||
{
|
||||
if( k == 0) return;
|
||||
|
||||
double * a_next = bli_auxinfo_next_a( data );
|
||||
double * b_next = bli_auxinfo_next_b( data );
|
||||
|
||||
|
||||
@@ -264,6 +264,8 @@ void bli_sgemm_opt_30x16(
|
||||
auxinfo_t* data
|
||||
)
|
||||
{
|
||||
if( k == 0 ) return;
|
||||
|
||||
float * a_next = bli_auxinfo_next_a( data );
|
||||
float * b_next = bli_auxinfo_next_b( data );
|
||||
|
||||
|
||||
Reference in New Issue
Block a user