Andrea Ferretti
Andrea Ferretti
* https://github.com/y-256/libdivsufsort/blob/wiki/SACA_Benchmarks.md * https://arxiv.org/abs/1307.1417
If I understand correctly, seqs should be supported. Anyway, I tried this example ``` nim proc sum*(xs: seq[int]): int {.exportpy.} = 0 ``` and it fails with ``` stack trace:...
After a long time, I decided to finally learn Arraymancer, and I was really pleased to see that the library has grown much more than I expected! Kudos to all...
I hope I am not bothering you too much by asking questions in the issue tracker, in case let me know. This time I am trying to port operations from...
All the songs in the screenshot below are tagged with artist "Max Gazzè". I know because I have tagged them in bulk, so I am pretty sure the artist name...
I have written some simple examples in Nimx, but it is not clear to me what kind of pattern to follow to create custom components. By this I mean: *...
The computation of eigenvalues can be used for the determinant, or perhaps there is a more specific LAPACK function
Matrices and vectors of static dimension can be implemented as `distinct` types over the standard ones. This would allow to borrow all implementations (therefore, there would be much less duplication...
Rewrite rules are useful to avoid intermediate allocations and perform more operations in a single BLAS call. We can support at least a few standard forms, and now there is...