mirror of
https://github.com/amd/blis.git
synced 2026-04-19 23:28:52 +00:00
Fixing an integer division in GEMV that was supposed to be a double operation (#218)
--------- Co-authored-by: Rayan <rohrayan@amd.com>
This commit is contained in:
@@ -629,7 +629,7 @@ void bli_sgemv_var1_smart_threading
|
||||
return;
|
||||
}
|
||||
|
||||
double m_n_ratio = m/n;
|
||||
double m_n_ratio = (double)m/(double)n;
|
||||
|
||||
// When the input value is less than the fuse factor
|
||||
if(n_per_loop < 1)
|
||||
|
||||
Reference in New Issue
Block a user