OlivierSohn
OlivierSohn
Would it be possible to add this package to stackage? https://github.com/commercialhaskell/stackage/blob/master/MAINTAINERS.md
_(Edited after manually looking in the dylib for function names)_ Hello, It seems that the functions from the commit https://github.com/ulrichard/ftgl/commit/92d175e86b36099bb66c0419447f797f9daf6461 are not present in the ftgl 2.1.3 library that was...
Hello, I would need `TimeSpec` to have a `Lift` instance. Would you consider taking a PR on that subject considering it adds a dependency on template-haskell? Note that I can...
Hello, In `Num` instance of `TimeSpec`, I think some documentation could be added regarding units for `fromInteger` argument and unit element of multiplication `(*)`: - `fromInteger` interprets the integral as...
Following up on #54, I implemented an unboxed matrix. My intent was to have a version with minimal working functionality that would suit my project. Nevertheless, I open this PR...
While working on #56, I saw that for every testable matrix size, `multStrassen` is /much/ slower than any other multiplication method. Also, for sizes > 256, the benchmark cannot finish...
I think the library would benefit from using Unboxed vectors ([this](https://hackage.haskell.org/package/vector-0.12.0.1/docs/Data-Vector-Unboxed.html) and [that](https://hackage.haskell.org/package/vector-0.12.0.1/docs/Data-Vector-Unboxed-Mutable.html) ) instead the boxed versions. Runtime performance would be enhanced because less memory will be required (one...
Sometimes the registration method was called twice. Before calling the method, I check that the notification concerns the right class, that fixes it.
This is probably not meargable as-is, because it's not in the spirit of the current API, but 'foldMUniforms' could be used to implement a new fold-like function in the class...
Using a state vector containing the information of 4 seeds, we could provide a new API where we get 4 random numbers at a time (using SIMD instructions for example)....