Gabriel Fougeron
Gabriel Fougeron
## 🐛 Bug Thanks to the amazing help of @ryanking13 and @hoodmane , I was able to start using module sparseqr in a small project of mineusing pyodide. Of course,...
Hi, For the first time, I tried to used custom costs in Geomloss to compute W_p distances with general p. Using the "online" backend, I constructed a Loss with the...
Hi, It looks to me as though the different algorithms for computing OT losses in Geomloss do not have support for float16/float32 dtypes. Is this correct? Would it even make...
### Is your feature request related to a problem? Please describe. I have plenty of complex-complex matrix multiplications in my cython code, and I currently use `scipy.linalg.cython_blas.zgemm` to treat them...
### Describe the bug I've never been able to define a global cdef constant value using Cython. I've always assumed the feature was not supported due to the way code...
### Is your feature request related to a problem? Please describe. ```cython cdef void create_memview( double *buf, int n, ) noexcept nogil: cdef double[::1] view = buf ``` The above...
Hi, First, let me apologize in case this is not the right place to ask this kind of questions. If so, please point me to a better place. Some context:...
Hi, Sorry if this is not the correct place to discuss this kind of topic. Please do point me to a better suited place if so. I'm very fond of...
Hi, I've been using mkl_fft as a backend for scipy for a while now, and it works great! Unless i'm mistaken, the available 1-D transforms are the fft and rfft....
Here is my numerical problem: I want to compute a Hamiltonian square root of a given skew-Hamiltonian matrix. The following article [Structure-Preserving Schur Methods for Computing Square Roots of Real...