Fixing an integer division in GEMV that was supposed to be a double operation (#221)

Co-authored-by: Rayan <rohrayan@amd.com>
This commit is contained in:
Rayan, Rohan
2025-09-30 18:03:02 +05:30
committed by GitHub
parent 812bac2666
commit 665ad619f0

View File

@@ -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)