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 about improving this program.

Also about approaches for learning parallel programming in Haskell.

import Data.List
import Control.Parallel

parHelp :: ( Num a ) => [ a ] -> [ a ] -> a 
parHelp [] [] = 0
parHelp ( x : xs ) ( y : ys ) = ret where 
ret = par a ( pseq b ( a + b ) ) where 
        a = x * y 
        b = parHelp xs ys

helpMult :: ( Num a ) => [ a ] -> [ [ a ] ] -> [ a ]
helpMult _ [] = [] 
helpMult x ( y : ys ) = ret where 
 ret =  par a ( pseq b  ( a : b ) ) where 
   a = sum . zipWith ( *) x $ y  
   b = helpMult x ys

mult :: ( Num a ) => [ [ a ] ] -> [ [ a ] ] -> [ [ a ] ]
mult [] _ = []  
mult ( x : xs ) ys = ret where 
 ret = par a ( pseq b  ( a : b ) ) where 
    a = helpMult x ys 
    b = mult xs ys

main = print $ mult [[1 .. 4 ] , [ 1 .. 4 ] , [ 1 .. 4 ] , [ 1 .. 4] ] ( transpose [[1 .. 4 ] , [ 1 .. 4 ] , [ 1 .. 4 ] , [ 1 .. 4] ])
link|improve this question

2  
OT. Try codereview.stackexchange.com – larsmans Dec 12 '11 at 19:59
3  
A list of lists is not a matrix. I suggest you learn and use Repa for this purpose. If you want to learn how to use the parallel package, I encourage you to select another application domain and re-ask the question. – Thomas M. DuBuisson Dec 12 '11 at 20:02
Thank you. I will try Repa. – keep_learning Dec 12 '11 at 21:24
9  
Disagree with the close vote; SO could use more content on parallel Haskell. – Dan Burton Dec 12 '11 at 21:40
Does this code actually work (give you the expected results), and you just want to improve the performance and/or parallelize it, or does this code not work (not give you the expected results) and you are looking to understand why it doesn't work? – casperOne Dec 13 '11 at 19:07
show 4 more comments
feedback

1 Answer

up vote 1 down vote accepted

Did you try very large (at least 1000x1000) matrices? It is possible that the computation is too short to paralellize.

link|improve this answer
Great , I haven't tried large data set. Thank you. – keep_learning Dec 13 '11 at 14:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.