-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Crash Issue! #89
Comments
Strange... On linux it works with 1.7.2 and 1.8-beta3. You seem to have run it from VSCode. Could you try the same outside of VSCode, just from the Julia prompt, and with the newest beta ? |
Ok, there seems to be a problem with pardiso_mkl. But we also need to make sure that this is not due to an indexing error in the sparse matrix submitted. Does As for KLUFactorization, with nearly 100% probability this will not work. And once you have the KLUFactorization anyway, why do you want to use Pardiso at all ? |
There is also matrix checkers: https://github.com/JuliaSparse/Pardiso.jl#matrix-and-vector-checkers.
You might want to try that. |
@KristofferC , thanks for your reply!
I tried to check but got: julia> checkmatrix(ps, A)
ERROR: MethodError: no method matching checkmatrix(::MKLPardisoSolver, ::SparseMatrixCSC{Float64, Int64}) It seems that this checker works only with julia> pss = PardisoSolver()
ERROR: pardiso library was not loaded |
@j-fu Thanks for your reply:
using Pardiso, SparseArrays, LinearAlgebra, JLD2
A, B = load("$(@__DIR__)/recordedFile.jld2", "A", "B");
ps = MKLPardisoSolver();
X = zeros(size(B))
solve!(ps, X, A, B)
|
Any help on that? |
I am meeting an issue when trying to run the below code. The REPL crashes by showing a message very quickly and disappear.
Any cause for that? Given that I have
Julia Version 1.8.0-beta1
downloaded from [Download Julia]The text was updated successfully, but these errors were encountered: