We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, there is a flipped condition in CommonOps_DDRM.multInner, which results in a less than optimal (sorry:) ) algorithm being picked.
`
if( a.numCols >= EjmlParameters.MULT_INNER_SWITCH ) { MatrixMultProduct_DDRM.inner_small(a, c); } else { MatrixMultProduct_DDRM.inner_reorder(a, c); }
There's the same thing in FDRM as well.
The text was updated successfully, but these errors were encountered:
I think you're right, but I want to double check with a performance benchmark to make sure.
Sorry, something went wrong.
lessthanoptimal
No branches or pull requests
Hi,
there is a flipped condition in CommonOps_DDRM.multInner, which results in a less than optimal (sorry:) ) algorithm being picked.
`
`
There's the same thing in FDRM as well.
The text was updated successfully, but these errors were encountered: