Overview to come...
Woefully incomplete documentation for butterfly is available here.
Additionally:
Use Meson to compile this library:
meson setup builddir
cd builddir
meson compile
This will build all of the examples, as well. Afterwards, the compiled executables for the examples will be in ./builddir/examples
.
For Mac machines using homebrew, it may be necessary to specify paths to dependencies by passing the -Dc_args
flag to meson, e.g.
meson setup builddir -Dc_args='-I/opt/homebrew/Cellar/suite-sparse/7.1.0/include/ -I/opt/homebrew/Cellar/openblas/0.3.24/include/'
This library features "OpenGL-style" error handling (e.g., see this page). The guiding principles are three-fold:
As this library is still in development, these principles are not fully realized yet, but this is the goal.
See Intel Embree for another example of a library with this style of error handling.
Emacs's lsp-mode can be used to add some IDE-like features to Emacs. For this to work with something like clangd (recommended), clangd needs to be able to find a compile_commands.json
file which describes the build. Meson generates this automatically, but it stores it in the build directory (e.g., builddir
above). When opening a project file for the first time, lsp-mode will ask for the location of the "project root". Make sure that this directory contains a copy of the most recent compile_commands.json
file.
This library includes a set of types for modeling recursively composed hierarchical matrices. These types support runtime polymorphism implemented using macros defined in interface.h. The root "class" in the hierarchy is BfMat.
See the following GitHub issues:
A bug in GCC 12's optimizer causes zgemv
to segfault. This problem will arise if you ask butterfly to compute a complex SVD while running GCC 12 and OpenBLAS.
One fix is to use flexiblas and select a different backend. Alternatively, use a different version of GCC.