gonum / blas

A BLAS implementation for Go [DEPRECATED]
172 stars 16 forks source link

Fix Idamax. X had not been sliced before ranging, Idamax found the la… #130

Closed btracey closed 9 years ago

btracey commented 9 years ago

…rgest element in the whole slice, not just the first n elements.

btracey commented 9 years ago

I know this should have a test, but I'd instead like to refactor the blas testing suite. I better understand how to make a robust testing suite than I did when these were originally written.

kortschak commented 9 years ago

LGTM after early return added.