Pardiso.jl
Pardiso.jl copied to clipboard
Calling the PARDISO library from Julia
I just tried to run the example in the README.md with `MKLPardisoSolver`. I use MKLSparse v1.1.0 and Pardiso v0.5.1 in Julia 1.5.1. MKL is installed automatically by MKLSparse. Does somebody...
I am seeing crashing/segfaults from Pardiso.jl with (project) Pardiso. I'm not sure if this is related, but the version of Pardiso that I got with my academic license was labelled...
``` julia> Pardiso.show_build_log() could not load library "C:\Users\accou\.julia\external\libpardiso600-WIN-X86-64.dll" The specified module could not be found. Pardiso library =============== Looking for libraries with name: libpardiso600-WIN-X86-64.dll. Looking in "C:\Users\accou\.julia\packages\Pardiso\GDj1P\deps" for libraries Looking...
I am encountering a problem when trying to set the number of threads for the `MKLPardisoSolver`. In this example, I set the number of threads to 2: ```julia using Pardiso,...
Requires us getting a license for the Travis user
Since transpose / complex conjugate is now lazy, dispatch on that instead of asking for `:C` or `:T`
Hello, I wanted to report that I am getting a solution with large errors from Pardiso. I tried to simplify the code in case you want to replicate the result....
Section 1.6, "Direct-Iterative Preconditioning for Nonsymmetric Linear Systems", of the PARDISO User Guide says > Many applications of sparse solvers require solutions of systems with gradually changing values of the...
I am trying to use Pardiso for sparse matrix diagonalization, but my matrix has more non-zero elements than Int32 can handle. To resolve this, I need to use Pardiso64. However,...