feat(debug-utils): added framework for shared debug util tools

This commit is contained in:
2025-04-10 09:05:30 -04:00
parent 08b68c22de
commit 41460acacf
21 changed files with 465 additions and 1799 deletions

View File

@@ -0,0 +1,12 @@
# Tools for analyzing MFEM Sparse Matricies (among other things)
MFEM does a lot of work with sparse matrixes but does not provide trivial tools to use them. Here I include some basic utilities to analyze these matricies.
## Python
There is a python script to preform the actual analysis.
## C++
There is a small C++ header only library which provides an interface to write MFEM sparse matrixes out to disk.
The C++ utility writes mfem sparse matricies in a custom format which was written to be simple. The python script
only understands this format.