Alexis Montoison

Results 300 comments of Alexis Montoison

@dpo @tmigot I didn't replace `FC` by `RC` because of the "diff" size but I can open another PR with just this modifcation. I also think that we should add...

> Is it really necessary to distinguish between "real" and "complex"? Am I not sure to understand your question, are you asking if we could use one type instead of...

> Great that you consider this! I am getting some errors when trying this PR with my example > > [#646 (comment)](https://github.com/JuliaSmoothOptimizers/Krylov.jl/issues/646#issuecomment-1265935010) > > Also, if I add `rtol=1.0e-10` I...

Il will work soon on the stopping conditions. Il will add this feature.

Hi @j-fu! Can you give a small example of a linear system where you use `ForwardDiff.Dual`? I use `AbstractFloat` instead of `Real` to exclude `Integer` numbers but I didn't know...

@giordano @staticfloat I would like to add `ReLAPACK` in the artifact of OpenBLAS. One routine is very useful, it's `gemmt` and it is also provided by `MKL`. It will update...

Mosè, this PR just adds few routines from ReLAPACK. If they merge my PR: https://github.com/xianyi/OpenBLAS/pull/3770, you will not need to update the patches related to ReLAPACK in the future. I...

I started to interface `gemmt` in Julia: https://github.com/JuliaLang/julia/commit/bfc85e30341045e73613e633f22cbb7abe8f4e3c OpenBLAS added it with the release 0.3.21: https://github.com/xianyi/OpenBLAS/issues/861 `BLIS` also provides this routine.

Yes, it will be great! In a nutshell, we compile OpenBLAS with ReLAPACK to have the gemmt routine: ```julia if [ ${version_patch} -ge 21 ]; then flags+=(BUILD_RELAPACK=1) fi ``` but...

> Running into this too. Any hints as to where in the source code should one look to attempt to fix this? I think that the culprit is [here](https://github.com/JuliaGPU/CUDA.jl/blob/master/lib/cusolver/linalg.jl#L30-L34).