Open juandarias opened 1 year ago
@juandarias What is your version of MKL.jl? We need the version 6.0 for PROPACK.jl.
Update: I can reproduce the issue.
I have MKL v0.6.0. I updated the issue with this info
@amontoison. Are older versions of PROPACK compatible with MKL? Maybe I can use one of them in the mean time
@juandarias All previous versions of PROPACK are compiled with OpenBLAS32_jll.jl so you can use them and also do a using MKL
. It will just not use the BLAS routines of MKL.
Thank you @amontoison and great package! This is the only one that provides correct results for iterative SVD's , nor IterativeSovlers nor KrylovKit worked in my case
Works now with Julia 1.10.4 - perhaps because of LBT 5.9 which provides forwarding of more BLAS and LAPACK symbols.
julia> using MKL
julia> using PROPACK
julia> tsvd(rand(20, 20))
([-0.2060419796110353; -0.2454011505143323; … ; -0.19251920965130948; -0.20989604037851442;;], [10.448019745507464], [-0.2316205727195162; -0.222697646579334; … ; -0.15296995156527565; -0.20513227779552395;;], [4.878769996642799e-38], 11, 11)
Description:
Platform:
MWE