Mikkel Paltorp
Mikkel Paltorp
Hello Boris, First of all thank you for making this package available. HSS-matrices are something that I for a long time have wanted to play around with. This package finally...
Hey again Boris, I played a little around with your code. Here are some very simple fixed so that: 1. You can solve linear systems with a `Vector` as a...
Hi there, I have a few problems that contain second-order cones with dimension greater than 4, meaning that the sparse-representation is used. For these problems the solver reports back either...
Hi there, In the `solve!` function for `PardisoDirectLDLSolver` a `Kfake` is utilized in the place of the actual KKT system. https://github.com/oxfordcontrol/Clarabel.jl/blob/76a9a11c890e8948d297e4b826df52257b132f51/src/kktsolvers/direct-ldl/directldl_mklpardiso.jl#L93-L100 While it is true that there is already a...
Hi there, I am currently solving a few models with PSD constraints using `MosekTools.jl`. The models are all read from .cbf files using `JuMP.read_from_file`, but there seem to be a...
Hi there, I tried to use this package for some computations. While it works it does look to be pretty inefficient at times. E.g. multiplication allocates lots of smaller vectors,...
Hello, I am currently trying to implement a Julia-interface for this library (pretty much a copy-paste of the one for FMM3D). However, the documentation seem to only cover the Helmholtz...
Hey there, I am trying to solve a problem with multiple right-hand sides. In short this means that I need to evaluate the hfmm3d for many different setups of charge...
PanuaPardiso expect that the colptr and rowval are Int32. However, on many systems the KKT matrix will be saved as a `SparseMatrixCSC{T, Int64}` matrix instead of a `SparseMatrixCSC{T, Int32}` matrix....
I am fairly new to using StaticArrays, so I do not know if this is intended or not but it caught me by surprise as this is different behaviour when...