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:
Rayan, Rohan
2025-09-30 14:04:39 +05:30
committed by GitHub
parent f0f5b4c612
commit dc4e0f72c1

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)