Goran Flegar

Results 12 issues of Goran Flegar

@upsj and I discussed a bit today about Ginkgo's _lend_ semantics. The problem we currently have is that `lend` has to be spammed everywhere. For example: ```c++ y = mtx::create(...);...

is:help-wanted
mod:core
is:idea

The problem ----------------- It almost never makes sense to pass a null pointer to one of Ginkgo's methods. There's usually no way to continue and the best we can do...

is:enhancement
is:help-wanted
is:proposal
mod:core

Ginkgo is supposed to be designed to work with user-provided datatypes. However, due to the use of external libraries (cuBLAS and cuSPARSE), which do not have support for this, it...

is:enhancement
mod:cuda

Currently, we're dropping all the errors that happen in the benchmarks. The `run_all_benchmarks.sh` script redirects all the `stderr` output from benchmark runners to `stdout`, and the `stdout` of `run_all_benchmarks.sh` is...

is:enhancement
is:help-wanted
is:good-first-issue
reg:benchmarking

Introduction ---------------- This is an issue to discuss how eigensolvers could be added to Ginkgo. In general, eigensolvers compute an [eigendecomposition](https://en.wikipedia.org/wiki/Eigendecomposition_of_a_matrix) **A Q = Q Λ** (or equivalently **A =...

is:help-wanted
mod:core
is:idea

Sometimes it is beneficial to have a method that computes the norm of a matrix (or liner operator). (Currently we only have a function which computes the column-wise dot product...

is:enhancement
is:help-wanted
is:good-first-issue

A possible optimization that would help optimize Ginkgo's copies and memory usage in general, would be to implement [copy on write](https://en.wikipedia.org/wiki/Copy-on-write) for `gko::Array`. Basically, whenever a copy of an array...

is:enhancement
is:help-wanted
is:good-first-issue
mod:core

Just found this site from GitHub that talks about different aspects of open source: https://opensource.guide/ We may want to use the advice presented there to improve the overall community experience...

is:help-wanted
is:proposal
reg:documentation

Just found out about [OSF](https://osf.io/). It is a framework that seems to aim at aiding reproducibility in science in general. Founded by the [Center for Open Science](https://cos.io/). Not sure what...

is:help-wanted
is:idea

The Problem ----------------- After already reviewing a couple of other implementations of Krylov solvers, today I looked into the TFQMR pull request (#23). After taking a closer look, I realized...

is:help-wanted
mod:core