-1
votes
0answers
244 views

What is an example of a snippet that computes something useful, that is both much smaller in Haskell AND beats C++ in performance? [closed]

For example, on Rosetta Code, Haskell's QuickSort is 2 lines long, while C++'s version is 90+ lines long. That is a great example of how simpler Haskell code can be. But it is probably slower. I know ...
16
votes
4answers
333 views

Parallel computations with fast randomness and purity?

My goal is to parallelize a computation using parMap from the parallel package, but I'd also like to add a bit of randomness to my sampling function. Without the randomness my calculation is simply ...
2
votes
1answer
106 views

Parallel Repa code doesn't create sparks

I'm writing code to do a subset product: it takes a list of elements and a list of indicator variables (of the same length). The product is computed in a tree, which is crucial to our application. ...
5
votes
2answers
171 views

A parallel monad map in Haskell? Something like parMapM?

I'm looking for a way to run two computations in parallel in the ST-Monad. I am building a rather large array (using STUArray) and I would like to do it in parallel. So far I've found this and this ...
35
votes
4answers
1k views

Why is there no implicit parallelism in Haskell?

Haskell is functional and pure, so basically it has all the properties needed for a compiler to be able to tackle implicit parallelism. Consider this trivial example: f = do a <- Just 1 b ...
15
votes
2answers
393 views

Efficient parallel strategies

I'm trying to wrap my head around parallel strategies. I think I understand what each of the combinators do, but every time I try using them with more than 1 core, the program slows considerably. For ...
4
votes
4answers
185 views

Running parallel URL downloads in Haskell

Below is Haskell code that (HTTP) downloads files that are missing from the given directory: module Main where import Control.Monad ( filterM , liftM ) ...
7
votes
2answers
105 views

MonadParallel Instance for Rand

I'm currently working with computations in ReaderT r (Rand StdGen) a which I would like to run in parallel. I've come across Monad Parallel which seems like it will do what I want. There is already ...
5
votes
1answer
123 views

Profiling multithreading performance in a Haskell program — no speedups using parallel strategies

After attempting to add multithreading functionality in a Haskell program, I noticed that performance didn't improve at all. Chasing it down, I got the following data from threadscope: Green ...
6
votes
1answer
108 views

How to evaluate tuples in parallel using rpar Strategy in Haskell?

I stumbled upon a problem with Eval monad and rpar Strategy in Haskell. Consider following code: module Main where import Control.Parallel.Strategies main :: IO () main = print . sum . inParallel2 ...
8
votes
1answer
508 views

Why is my program faster with one core not two core?

I'm currently trying to understand how to program in parallel in Haskell. I'm following the paper "A Tutorial on Parallel and Concurrent Programming in Haskell" by Simon Peyton Jones and Satnam ...
7
votes
2answers
165 views

Sequencing IO actions in parallel

I have a function that returns an IO action, f :: Int -> IO Int I would like to compute this function in parallel for multiple values of the argument. My naive implementation was as follows: ...
4
votes
1answer
111 views

Throttling parallel computations

The Question I have a finite list of values: values :: [A] ... and an expensive, but pure, function on those values: expensiveFunction :: A -> Maybe B How do I run that function on each ...
4
votes
1answer
230 views

Structure of the Haskell runtime on multicore processors [closed]

I understand that the Haskell runtime creates an OS thread on every core or so. Lightweight threads / user threads are then scheduled by the runtime onto these pre-deployed OS threads. Roughly. But ...
4
votes
3answers
198 views

Parallel Haskell in order to find the divisors of a huge number

I have written the following program using Parallel Haskell to find the divisors of 1 billion. import Control.Parallel parfindDivisors :: Integer->[Integer] parfindDivisors n = f1 `par` (f2 `par` ...
8
votes
1answer
213 views

Parallel computation in Haskell

When I run this Haskell snippet it gets only 1 CPU loaded. Both f and g are non-sense, but shouldn't it load two CPUs when available? Compiled as ghc -O2 snippet.hs. f x = 1 + (f $! x) g x = 5 + (g ...
9
votes
1answer
540 views

Haskell parMap and parallelism

I have an implementation of Conway's Game of Life. I want to speed it up if possible by using parallelism. life :: [(Int, Int)] -> [(Int, Int)] life cells = map snd . filter rules . freq $ ...
11
votes
2answers
257 views

Controlling parallel execution

Haskell provides a par combinator, which queues a "spark" for possible evaluation in parallel with the current thread. It also provides a pseq combinator, which forces evaluation of pure code to occur ...
2
votes
2answers
128 views

Why MVar does not work with `par`?

Just curious. If I have 2 threads spawn using forkIO, communication between them can be done using MVar. I wonder if the same apply when using parallel Haskell's spark created using par. I understand ...
84
votes
1answer
2k views

Parallel mapM on Repa arrays

In my recent work with Gibbs sampling, I've been making great use of the RVar which, in my view, provides a near ideal interface to random number generation. Sadly, I've been unable to make use of ...
10
votes
2answers
456 views

What are the key differences between the Repa 2 and 3 APIs?

To be more specific, I have the following innocuous-looking little Repa 3 program: {-# LANGUAGE QuasiQuotes #-} import Prelude hiding (map, zipWith) import System.Environment (getArgs) import ...
2
votes
1answer
229 views

Does `par` create another thread?

My understanding to par is that it will create a thread in another core to execution. But I failed proof this understanding with following test code since the result showing seems only one thread is ...
0
votes
1answer
397 views

How to improve performence of this Haskell code?

I'm facing the following problem : From the initial set [1,2,3,4] compute all possible subsets i.e [[1],[2],[3],[4],[1,2],[1,3],[1,4],[2,3],[2,4],[3,4],[1,2,3],[1,2,4],[1,3,4],[2,3,4],[1,2,3,4]] ...
4
votes
2answers
258 views

Haskell: Why was `par` defined the way it was?

par is declared as: par :: a -> b -> b Notice, that argument one is thrown away. In order to use par you need to play tricks like using the same expression multiple times. If its purpose is ...
3
votes
1answer
100 views

Identifying the current HEC for a function in Haskell

I'm writing a parallel Haskell program using Strategies. It's not doing what it's supposed to do, and I would like to inspect which Haskell Execution Context (HEC) a function is executed in. Is there ...
2
votes
2answers
253 views

Haskell parallel computation using an STArray

I'm trying to do computation in parallel, and write the results to an STArray. I think this code shows what I'm trying to do. However, I'm getting compile errors. import Control.Monad import ...
11
votes
1answer
403 views

Slowdown when using parallel strategies in Haskell

I was working through the exercises of Andre Loh's deterministic parallel programming in haskell exercises. I was trying to convert the N-Queens sequential code into parallel by using strategies, but ...
5
votes
2answers
301 views

How to take F# measurements to get speedups

Assuming a single machine with 8 cores. In Haskell, you can compile using the threaded option, then during runtime use +RTS -Nx to specify the number of cores to be used. e.g. $ myprg args // ...
4
votes
1answer
359 views

Haskell parallel performance

The task is to speed up a summation by using parMap or parListChunk or better. It actually runs slower with parallelism code. Edit: Facepalm.. I overlooked how to execute the application correctly. ...
1
vote
1answer
456 views

Control.Parallel compile issue in Haskell

The compiler is complaining each time on different example applications of parallel Haskell; with this message: Could not find module `Control.Parallel.Strategies' The ghc compiler command: ghc ...
9
votes
2answers
514 views

Garbage collection in Haskell & parallel computations

Most of languages, using garbage collectors (possibly all of them), have one major issue related to parallel computations: garbage collector has to stop all running threads in order to delete unused ...
2
votes
1answer
295 views

what exactly is dynamic parallelism?

I am not sure to properly understand the difference between static and dynamic parallelism in Haskell. Suppose I have a map function which I can easily parallelise either using parMap rdeepseq f xs ...
3
votes
1answer
327 views

Data Parallel Haskell Prefix Sum

I'm playing with some Data Parallel Haskell code and found myself in need of a prefix sum. However I didn't see any basic operator in the dph package for prefix sum. I rolled my own, but, since I'm ...
2
votes
1answer
496 views

Parallel Merging of two sorted lists

I am trying to merge two list in parallel. I have two sorted lists [(i, j, val)]. Lists are sorted on j and for same j, sorted on i. If the two lists contain the same (i, j) then their values are ...
6
votes
1answer
302 views

Writing “fib” to run in parallel: -N2 is slower?

I'm learning Haskell and trying write code to execute in parallel, but Haskell always runs it sequentially. And when I execute with the -N2 runtime flag it take more time to execute than if I omit ...
6
votes
2answers
524 views

How to use Parallel Strategies in Haskell

I have a function frequencyBy which I would like to parallelize. Here follows a simple test case: import Control.Parallel.Strategies import Control.DeepSeq import System.Environment frequencyBy :: ...
4
votes
1answer
181 views

Parallel IO Causes Random Text Output in Terminal

I'm using import Control.Concurrent.ParallelIO.Global main = parallel_ (map processI [1..(sdNumber runParameters)]) >> stopGlobalPool where processI :: Int -> IO () is some function, ...
9
votes
3answers
940 views

Parallel graphics processing in Haskell

Graphics is one of those "embarrassingly parallel" problems. Haskell is supposed to be really, really good for parallel processing. So my question is: What is the best way to throw as many CPU cores ...
15
votes
2answers
491 views

Why is concurrent haskell non deterministic while parallel haskell primitives (par and pseq) deterministic?

Don't quite understand determinism in the context of concurrency and parallelism in Haskell. Some examples would be helpful. Thanks
6
votes
1answer
608 views

Parallel Matrix Multiplication

I wrote a simple parallel matrix multiplication using par and pseq. After running this program, none of the sparks converted (SPARKS: 20 (0 converted, 0 pruned)). I would like to hear your comment ...
9
votes
2answers
341 views

Mutable, (possibly parallel) Haskell code and performance tuning

I have now implemented another SHA3 candidate, namely Grøstl. This is still work in progress (very much so), but at the moment a 224-bit version pass all KATs. So now I'm wondering about performance ...
1
vote
0answers
182 views

How to install haskell Parallel on mac?

How to install haskell Parallel on mac? I'm trying: '$sudo cabal install parallel' but its not working. I'm getting the following message: Resolving dependencies... Configuring parallel-3.2.0.0... ...
5
votes
2answers
746 views

Parallel Cabal Builds

Is there a way to compile packages in parallel when using cabal install similar to GNU make's -jN flag?
1
vote
1answer
232 views

Using the Par monad with STM and Deterministic IO

I'm in the process of writing a report for an assignment in which I implemented a concurrent multicore branch and bound algorithm using the STM package and there was an issue I've come up against. ...
5
votes
1answer
142 views

Space analysis for parfib in monad-par example

When reading through parfib.hs code on github, I saw this comment about memory allocation for monadic version: Monad-par version: fib(38) non-threaded: 23.3s 23.1s fib(38) 1 thread : 24.7s 24.5s ...
10
votes
1answer
266 views

Strategies in Scala

Is there an equivalent to Haskell Control.Parallel.Strategies or a way to acheive the same thing ? That allow an existing code to be evaluated in a different way. By separeting algorithm from ...
5
votes
1answer
273 views

Would seq ever be used instead of pseq?

If pseq ensures order of evaluation and seq doesn't, why does seq exist? Is there any time that seq should be used over pseq?
3
votes
4answers
442 views

What's the best way to write some semaphore-like code in Haskell?

Suppose I have a function f which takes an integer argument. f may not terminate on some arguments, but its result is equally valuable. (For concreteness, the argument could be the seed to a random ...
0
votes
1answer
793 views

Future of parallel programming [closed]

What do you think is the future of parallel computing in general ? I'mnot really experienced when it comes to parallel computing however I'm a big enthusiast of it. During last year I was working on ...
2
votes
1answer
131 views

Threadscope-like processor viewer/debugger for Erlang?

Is there anything similar to Threadscope for Erlang? Something to view how the workload is distributed across the cores, spot bottlenecks etc?

1 2