summaryrefslogtreecommitdiff
path: root/examples/parallel.hs
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2009-12-02 14:03:33 +0000
committerAlberto Ruiz <aruiz@um.es>2009-12-02 14:03:33 +0000
commit2ef7028aab75ee9e96b9f4a429f70d37c63deab5 (patch)
tree8db245e1db9b082507116f5c29ca4d9a0f59f7d5 /examples/parallel.hs
parent30a91aad855791ab86a6d749dc6b732d5859b217 (diff)
fix version
Diffstat (limited to 'examples/parallel.hs')
-rw-r--r--examples/parallel.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/parallel.hs b/examples/parallel.hs
index 388a48e..efcbe8a 100644
--- a/examples/parallel.hs
+++ b/examples/parallel.hs
@@ -5,8 +5,8 @@ import Numeric.LinearAlgebra
5import Control.Parallel.Strategies 5import Control.Parallel.Strategies
6import System.Time 6import System.Time
7 7
8inParallel = parMap rdeepseq id 8inParallel = parMap rwhnf id
9-- rwhnf also works in this case 9-- rdeepseq (or older rnf) not needed in this case
10 10
11-- matrix product decomposed into p parallel subtasks 11-- matrix product decomposed into p parallel subtasks
12parMul p x y = fromBlocks [ inParallel ( map (x <>) ys ) ] 12parMul p x y = fromBlocks [ inParallel ( map (x <>) ys ) ]