Created
February 9, 2014 21:13
-
-
Save nh2/8905997 to your computer and use it in GitHub Desktop.
Example of how Haskell's forM_ [1..N] is slow and custom loops are fast (lack of fusion)
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
{-# LANGUAGE ScopedTypeVariables, BangPatterns #-} | |
-- Example of how forM_ [1..N] is slow | |
module Main (main) where | |
import Prelude hiding (read) | |
import Control.Monad | |
import Data.Vector ((!), Vector) | |
import qualified Data.Vector as V | |
import qualified Data.Vector.Unboxed as U | |
import qualified Data.Vector.Unboxed.Mutable as UM | |
import Data.Vector.Mutable (STVector, new, read, unsafeWrite, write) | |
import qualified Data.Vector.Mutable as VM | |
import Debug.Trace | |
_SIZE :: Int | |
_SIZE = 512 | |
a, c :: Vector (U.Vector Int) | |
a = V.replicate _SIZE (U.replicate _SIZE 1) | |
-- c = V.generate _SIZE $ \i -> | |
-- V.generate _SIZE $ \k -> | |
-- sum [ a!i!j * a!j!k | j <- [0.._SIZE-1] ] | |
c = V.create $ do | |
-- Initialize result vector with 0 | |
v :: STVector s (UM.STVector s Int) <- new _SIZE | |
forM_ [0.._SIZE-1] $ \i -> do | |
w <- UM.replicate _SIZE 0 | |
write v i w | |
-- Fill result vector | |
loop _SIZE $ \i -> do | |
y <- read v i | |
loop _SIZE $ \k -> do | |
-- forM_ [0.._SIZE-1] $ \j -> do -- slow | |
loop _SIZE $ \j -> do -- fast | |
x <- UM.unsafeRead y j | |
UM.unsafeWrite y j $! x + (a!i!.j) * (a!k!.j) | |
-- Freeze inner vectors | |
r <- new _SIZE | |
forM_ [0.._SIZE-1] $ \i -> do | |
y <- read v i | |
w <- U.unsafeFreeze y | |
write r i w | |
return r | |
{-# INLINE (!.) #-} | |
(!.) :: (U.Unbox a) => U.Vector a -> Int -> a | |
(!.) = U.unsafeIndex | |
{-# INLINE loop #-} | |
loop :: (Monad m) => Int -> (Int -> m ()) -> m () | |
loop bex f = go 0 | |
where | |
go !n | n == bex = return () | |
| otherwise = f n >> go (n+1) | |
res = V.sum (V.map U.sum c) | |
main = print res |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment