Luiz M. Faria
Luiz M. Faria
The `thread` argument in e.g. `lu` does not propagate to `schur_complement!` (which uses `@tturbo`), so the execution is still partially threaded when `thread=Val(false)`. Is that intended?
This `PR` adds support for an efficient representation and manipulation of `Hermitian` kernels. By wrapping a `Kernel` as a `Hermitian` type, we now automatically assemble *only* the upper triangular part...
It would be nice to use [`DataFlowTasks`](https://github.com/maltezfaria/DataFlowTasks.jl) for the parallel LU factorisation. I am opening this issue to keep track of the changes and PRs needed to make that happen....
As `Makie` is becoming more mature, I think it makes sense to provide recipes which make use of `Makie` instead of `Plots`.
It would be useful to be able to use `hcat` and `vcat` on hierarchical matrices, and there are some problems where one naturally has a "block matrix" structure. The concatenated...
@PierreMarchand20 and @DuduGuima: this draft PR is a place where we can discuss ideas and code to implement the a *lazy* coarsened `HMatrix` type (and accompanying functionality). A rough outline...
- [ ] Better handle cases where `ACA` fails - [ ] Different pivot strategies
I have some code that makes constant use of `extrapolate`, and while probably not a bottleneck in my use case, I was wondering if it would be possible/desirable to modify...
On commit 41dc041b1f5be5a70efd75d9cd588d2d64b6ce85, the following code errors on my machine: ```julia @inferred extrapolate(x -> sin(x)/x, 1.0) ``` while this one works ```julia @inferred extrapolate(x -> sin(x)/x, 1) ``` I poked...