I wonder whether tvm supports the following operators:
-
matrix determinant (
linalg_det
). -
matrix inversion (
linalg_inverse
).
I searched the topi and relay library but failed to find these operators, and also failed to come up with an op-level equivalent transformation solution based on the current op inventory.
PS.
In my research field, I need to build customized computaion graphs which include linalg_det
and linalg_inverse
, and I need to deploy the model in portable devices for online computation.