parallel icon indicating copy to clipboard operation
parallel copied to clipboard

a library for parallel programming

Results 25 parallel issues
Sort by recently updated
recently updated
newest added

Hi! @simonmar, I noticed that the [maintainer field](https://github.com/haskell/parallel/blob/master/parallel.cabal#L6) of the Cabal file was set to `[email protected]`, which usually indicates ownership of the CLC for libraries that have this. However, since...

I made [this](https://github.com/noahmartinwilliams/passcrack) repo to demonstrate how the parallel library works, and it takes longer to use parallelism than it does to use a single core. It doesn't seem to...

Closes #38. Additionally, add some small doc comments and remove some unnecessary files. I tried to build a small framework for testing strategies (two actually, since `Control.Seq` and `Control.Parallel.Strategies` have...

This is based off issue #26 although I did not remove `seqMap`. I can do this if desired. I also did not specify versions for the added bifunctor package dependency...

I goofed up and made the ``strat1 `dot` strat1 = strat1`` law too strong. Fix that. Also, add laws for ``strat `dot` rseq`` and ``strat `dot` rpar``.

Generalize most functions from `Strategy a` to a new `Strategy' a b`. This didn't actually require any changes to terms, but it gives a much better fusion story. `Strategy'` is...

```haskell appEval :: forall a (b :: TYPE rep). (a -> b) -> Eval a -> b appEval f (Eval (IO m)) = case runRW# m of (# _, a...

This library seems to be completely abandoned, except for dependency bumps. There are plenty of open issues and PRs that noone reacts to. For example, I have a PR (#61)...

I tried compiling the following code with ghc-9.2.8: ``` module Main (main) where import Control.Parallel.Strategies import GHC.Conc import System.IO import Text.Printf sigmoid :: Double -> Double sigmoid x = 1.0...

I would very much want that the documentation contains a minimal convincing example (and that this would also be included in tests, so we can be sure that it works)....