When building the package with the lates version of numpy I got the following warning:
DeprecationWarning: numpy.core.umath_tests is an internal NumPy module and should not be imported. It will be removed in a future NumPy release.
from numpy.core.umath_tests import matrix_multiply
I think matrix multiply is used in three places. Sometimes for convenience, sometimes because of speed. Is there any good alternative?
When building the package with the lates version of numpy I got the following warning:
DeprecationWarning: numpy.core.umath_tests is an internal NumPy module and should not be imported. It will be removed in a future NumPy release. from numpy.core.umath_tests import matrix_multiply
I think matrix multiply is used in three places. Sometimes for convenience, sometimes because of speed. Is there any good alternative?