deepSeqArray的单精度数组

时间:2011-04-11 10:15:24

标签: arrays haskell repa

我有Float函数创建的getVectorFloat元素向量。 为了进行一些测量,我需要使用deepSeqArray。 但是,我无法做到这一点。

以下是我的例子:

import Data.Array.Repa as R
import Data.Array.Repa.Algorithms.Randomish

len :: Int
len = 3000000

main = do
    ws <- getVectorFloat len
    ws `deepSeqArray` return()

getVectorFloat :: Int -> Array DIM1 Float
getVectorFloat len = R.map (toFloat) (getVectorDouble len)

toFloat :: Double -> Float
toFloat a = realToFrac a

getVectorDouble :: Int -> Array DIM1 Double
getVectorDouble len = randomishDoubleArray (Z :. len) (-100) 100 1

我得到的错误:

haskell.hs:9:9:
    Couldn't match expected type `Array sh0 a0'
                with actual type `Float'
    In the first argument of `deepSeqArray', namely `ws'
    In the expression: ws `deepSeqArray` return ()
    In the expression:
      do { ws <- getVectorFloat len;
             ws `deepSeqArray` return () }

我不明白为什么Array sh0 a0无法与Array Dim1 Float匹配。

感谢您的帮助

1 个答案:

答案 0 :(得分:1)

问题来自于那些没有你想到的事情。 当你ws <- getVectorFloat len

未使用数组设置ws,但为其调用了每个值。即数组的符号,类似于地图。请考虑以下示例

prelude > do x <- [1,2,3]; return (x*10)
[10, 20, 30]

或更有趣; - )

Prelude> do <-[1,2,3];y<-[10,20,30]; return(x,y)                                                                                                                                         
[(1,10),(1,20),(1,30),(2,10),(2,20),(2,30),(3,10),(3,20),(3,30)]   

所以我不确定你对do的使用是否合适。