Magnus Ulimoen
Magnus Ulimoen
Great that you are working on this. There is a big feature space to explore. Some of the incompatibility can be resolved by using traits for `dereference` etc. The reference...
I replaced hdf5 1.13 (which was a beta lineage) with 1.14.0. This requires #227
Would be easier to bump the bundled `hdf5-c` to 1.14 instead of maintaining three versions
Could you try `cargo build --workspace --exclude sprs-benches` or `cargo build --workspace --features sprs-benches/dl_eigen`? Strange that it does not check find the eigen library. I'll check the setup on my...
Packages are not installed system-wide, you will need to specify `--features sprs-benches/dl_eigen` for every `cargo` invocation, unless you install `eigen` yourself (package name is [`eigen`](https://archlinux.org/packages/extra/any/eigen/)).
The implementation of BiCGSTAB would be great to have in this crate. On generalisation into traits I would hold on a bit until we know what to expect on differences...
I don't think I get the question here. Are you asking to create the `L` or solve a matrix problem where you have precomputed `L`?
If you already have `L` then I'm still confused in how you expect an ldl factorisation to work. You should be able to use a combination of `diag_solve` and `ldl_solve'...
Ok, I understand a bit more what you mean now. Not that I have checked for correctness, but you could "cheat" by using a different `FillInReduction`. ```rust #[test] fn cuthill_ldl_solve_lower()...
This would happen if the compressor is not available for `blosc`. If one specifies `--features blosc-src/lz4,blosc-src/zlib` one gets down to 19kB with the blosc-lz4 filter and 8kB with blosc-zlib. It...