I’ve put together a minimal, tiny draft of a project idea I had. It’s about helping to work with large structured models, the kind of thing you might use g2o for (and I imagine similar things might exist for FEM). Basically we have formulas that need to be evaluated for many indices, and the idea is to help doing that and also calculating the Jacobian.
Thanks, I definitely have to learn more about what is going on regarding sparse arrays. I’m not so sure how this connects to what I’m looking for, though. Right now I’m just filling up a SparseMatrixCSC and at most would like a CSR version of it. The essence of the project is that we have models defined by a few formulas that involve few variables and they are applied over long vectors to define the full model. The main questions in my head right now are: what’s a good, declarative way to represent the model and its functions, how to ensure an efficient Jacobian update, and how to interface nicely with AD tools. Perhaps my liberal use of the term “block” is misleading about the emphasis?
I saw you are passing block sizes to update_jacobian_values! and update_jacobian_indices!. I just thought it may make sense to embed this information in the matrix so that you only need to pass functions. Of course, as I said, a function-based API that manipulates SparseMatrixCSC directly totally makes sense as well.
It’s just a dead simple CSC matrix. I think the only thing that is relevant to ArrayInterface is that you can write something like has_sparsestruct(x::Type{<:AbstractSparseMatrixCSC}) instead of has_sparsestruct(x::Type{<:SparseMatrixCSC}).