Created
February 25, 2017 04:50
-
-
Save jmikkola/c2255cef16ad12e3c5e690332a443035 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Control.Concurrent | |
main = do | |
setNumCapabilities 4 | |
result <- parallelDoWork 38 4 | |
--result <- doWork 38 4 | |
putStrLn $ show result | |
parallelDoWork n m = do | |
resultMVars <- mapM (\_ -> forkWork n) [1..m] | |
results <- mapM takeMVar resultMVars | |
return $ foldl (+) 0 results | |
forkWork :: Int -> IO (MVar Int) | |
forkWork n = do | |
m <- newEmptyMVar | |
forkIO $ do | |
-- $! is necessary to have the result evaluated now, inside the thread, | |
-- rather than when takeMVar is called | |
let value = slowFib $! n | |
putMVar m $! value | |
return m | |
doWork :: Int -> Int -> IO Int | |
doWork n m = return $ foldl (+) 0 [slowFib n | _ <- [1..m]] | |
slowFib :: Int -> Int | |
slowFib 1 = 1 | |
slowFib 2 = 2 | |
slowFib n = slowFib (n - 1) + slowFib (n - 2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment