Tobias Ribizel
Tobias Ribizel
You are using it correctly, the matrix automatically gets converted into Csr internally to set up the preconditioner. Would it be possible to share the matrix? You can run `gko::write_binary(output_stream,...
I guess we need to push #770 forward a bit to be able to figure out such issues quickly - passing unsorted data to Coo may cause all kinds of...
The test error for 195 is not an issue, we just need to relax the error bounds slightly, it was probably tripped since we have two values instead of a...
I can reproduce the MPI issue on WSL2 with GCC 12.1 and OpenMPI 4.1.4
@stanisic do I recall correctly that you were running in a virtual machine? Maybe that explains why WSL and your system are failing, but the error can't be reproduced elsewhere?
The numerical issue was fixed by #1083
We don't really provide an interface for Eigen right now, and the Eigen SparseMatrix format does not map ideally to Ginkgo's matrix types, unless it is compressed explicitly. We need...
Sorry, I'm always talking about the latest Ginkgo version. In 1.4.0, you need to specify the type explicitly: ```cpp auto mat_A = gko::matrix::Csr::create((exec), gko::dim{A.rows(), A.cols()}, gko::Array::view(exec, A.nonZeros(), A.valuePtr()), gko::Array::view(exec, A.nonZeros(),...
A new release is planned in the next maybe 1-2 months, but since it involves a lot of new features, we want to make sure we got everything right before...
Maybe we can get #753 merged first, then we can provide this functionality for temporary vectors more universally?