Has there been an implementation for solving Ax = b with a sparse triangular matrix in Tensorflow? (corresponds to the tf.matrix_triangular_solve())
AFAIK, if we have A, for example, as a lower triangular matrix with a sparse matrix representation, we need to convert it to a dense matrix with the tf.sparse_to_dense().
But, if A has a very large dimension, e.g., 16416x16416, and very sparse entries, e.g., 0.018% (about 45216 non-zeros), it would take a large amount of memory.
I think it would be very helpful if we could take advantage of sparse matrix solver, such as for matrix with a banded structure, in Tensorflow.
Sorry, if my question is not relevant. For example, if there have been any solutions for this, I would be grateful for any help.
Thanks.