-
Hey, I just wanted to ask about the feasibility of using this library as a replacement for a large-scale parallel solver like PETSc or hypre. Looking at the code for `cg.jl` it seems like all that is…
-
hello,
thanks for releasing this library! I really like the design of the api.
I was wondering if you had any ideas to help me figure out some performance issues I am facing. I am using `Pca` b…
-
how to run PCA including all chromosomes at once?
or run separately and sum the eigen values from each chr?
-
### Is your feature request related to a problem? Please describe.
As a follow-up to a ticket I logged as bug that wasn't a bug ([18980](https://github.com/scipy/scipy/issues/18980)) I've done furt…
-
Hi all,
I know Kilosort/Phy is specialised for data with large channel counts, but currently we are only running 4-channel tetrode recordings through this software. As such, the whitening filter ap…
-
When I run my own data, core dumped error occurs. I checked my data is similar to default data, i don't know why.
PAINTOR -input /home/testpaintor/pax3/input.files -in /home/testpaintor/pax3/ -out …
-
Enzyme autodiff fails to work with LinearSolve.
**Minimal Reproducible Example 👇**
```julia
using Enzyme
using LinearSolve
function testls(A, b, u)
oa = OperatorAssumptions(true, conditi…
-
When constructing a TT matrix from an Hamiltonian operator with a very large number of degrees of freedom the norm of the matrices passed to the QR factorization routine becomes too large.
The error …
-
@lkdvos , maybe we can discuss the interface here.
For the family of methods like qr, eigen and svd (possibly trunced) there needs to be support for:
- backends (LAPACK, CUSOLVER, KrylovKit, ...)
…
-
using LinearAlgebra, TSVD
X=rand(4,5)
X=X'X
F=TSVD.teig(X)
X*F[2] ≈ F[2]*diagm(F[1])
false