-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clean up SubHask's dependencies #37
Comments
Not being on stack is an important data point, so gamma, continued-fractions and converge would be great to carve out (or get into stack). Ditto c code: cbits/Lebesgue.c, Maybe swap erf-native for erf - but I cant think of a solid reason why. The main dividing line looks like the compatibility layers - look at how HyperLogLog pulls in a lens dependency. But if/until this part grows, the dependency list looks skinny compared with others. If you're not in a particular hurry, I'll volunteer for the benchmarking. |
I agree that being in stack seems like a good dividing line, except that the most problematic package (hmatrix) is in stack. There's no urgent rush for this. It probably makes most sense for you to benchmark the matrix ops since you implemented them. |
Can you also make dependency bounds more flexible? Stack helps with reproducible builds anyway. I was having a lot of problems trying to play with HLearn because of this. I would be also great to be able to compile this with GHC 7.10.3. |
@mrkkrp I'm not sure what you mean by more flexible dependency bounds. If you look in the cabal file, you'll see there are no dependencies bounds at all: https://github.com/mikeizbicki/subhask/blob/master/subhask.cabal#L129 |
Huh, interesting. I cloned the |
I'm glad you pointed out this, as I will have another chance to try to make it work, thanks! |
There's been issues regarding SubHask having too many dependencies for some people, particularly with hmatrix and Windows (see #22). Now that SubHask has a Haskell-native implementation of matrix multiplication (#32), it would be possible to remove the hmatrix dependency, and place that in a different package for anyone who wants faster matrix multiplications.
Some things that need to get done for that to happen:
The text was updated successfully, but these errors were encountered: