I try to accelerate the evaluation of a MutableDenseMatrix using lambdify. It works with the module 'numpy'. 'Numexpr' should be faster (as I need the evaluation to solve a large optimization problem).
A smaller example of what I am trying to do is given by
from sympy import symbols, cos, Matrix, lambdify
a11, a12, a21, a22, b11, b12, b21, b22, u = symbols("a11 a12 a21 a22 b11 b12 b21 b22 u")
A = Matrix([[a11, a12], [a21, a22]])
B = Matrix([[b11, b12], [b21, b22]])
expr = A * (B ** 2) * cos(u) + A ** (-3 / 2)
f = lambdify((A, B), expr, modules='numexpr')
It raises the error
TypeError: numexpr cannot be used with ImmutableDenseMatrix
Is there a way to use lambdify for DenseMatrices? Or another idea how to speed up the evaluation?
Thanks in advance!
A possible solution using numexpr is to evaluate every matrix expression on it's own. The following Code should output a python function which evaluates all matrix expressions using Numexpr.
Numexpr with Matrices