You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Not a problem just enhancement. Should check if there is a possible performance gain (probably mostly in the distance function) when changing any of the dot products to matmul or better einsums. Furthermore changing certain dot calls to matmul makes it more clear what is going on for anyone not that familiar with numpy.
Describe the solution you'd like
Change dot function to better einsum or matmul calls.
Describe alternatives you've considered
n/a
Additional context
matmul is faster for larger matrices.
dot is faster for smaller matrices
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Not a problem just enhancement. Should check if there is a possible performance gain (probably mostly in the distance function) when changing any of the dot products to matmul or better einsums. Furthermore changing certain dot calls to matmul makes it more clear what is going on for anyone not that familiar with numpy.
Describe the solution you'd like
Change dot function to better einsum or matmul calls.
Describe alternatives you've considered
n/a
Additional context
The text was updated successfully, but these errors were encountered: