summaryrefslogtreecommitdiff
path: root/lib/Data
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2009-04-17 11:55:32 +0000
committerAlberto Ruiz <aruiz@um.es>2009-04-17 11:55:32 +0000
commit33a8f087574c89d257fccefd58643bd9b8fa9f22 (patch)
treef017b6834367fd1bd29d58801d10a2eebf383be3 /lib/Data
parent71ed02d2728701130cf82e61a8633af0f6375812 (diff)
restored C trans and constant for comparison
Diffstat (limited to 'lib/Data')
-rw-r--r--lib/Data/Packed/Internal/Matrix.hs41
1 files changed, 37 insertions, 4 deletions
diff --git a/lib/Data/Packed/Internal/Matrix.hs b/lib/Data/Packed/Internal/Matrix.hs
index b1e7670..13ffc34 100644
--- a/lib/Data/Packed/Internal/Matrix.hs
+++ b/lib/Data/Packed/Internal/Matrix.hs
@@ -221,13 +221,13 @@ class (Storable a, Floating a) => Element a where
221 221
222instance Element Double where 222instance Element Double where
223 subMatrixD = subMatrix' 223 subMatrixD = subMatrix'
224 transdata = transdata' 224 transdata = transdataAux ctransR -- transdata'
225 constantD = constant' 225 constantD = constantAux cconstantR -- constant'
226 226
227instance Element (Complex Double) where 227instance Element (Complex Double) where
228 subMatrixD = subMatrix' 228 subMatrixD = subMatrix'
229 transdata = transdata' 229 transdata = transdataAux ctransC -- transdata'
230 constantD = constant' 230 constantD = constantAux cconstantC -- constant'
231 231
232------------------------------------------------------------------- 232-------------------------------------------------------------------
233 233
@@ -257,6 +257,23 @@ transdata' c1 v c2 =
257-- The above pragmas only seem to work on top level defs 257-- The above pragmas only seem to work on top level defs
258-- Fortunately everything seems to work using the above class 258-- Fortunately everything seems to work using the above class
259 259
260-- C versions, still a little faster:
261
262transdataAux fun c1 d c2 =
263 if noneed
264 then d
265 else unsafePerformIO $ do
266 v <- createVector (dim d)
267 withForeignPtr (fptr d) $ \pd ->
268 withForeignPtr (fptr v) $ \pv ->
269 fun (fi r1) (fi c1) pd (fi r2) (fi c2) pv // check "transdataAux"
270 return v
271 where r1 = dim d `div` c1
272 r2 = dim d `div` c2
273 noneed = r1 == 1 || c1 == 1
274
275foreign import ccall "transR" ctransR :: TMM
276foreign import ccall "transC" ctransC :: TCMCM
260---------------------------------------------------------------------- 277----------------------------------------------------------------------
261 278
262constant' v n = unsafePerformIO $ do 279constant' v n = unsafePerformIO $ do
@@ -267,6 +284,22 @@ constant' v n = unsafePerformIO $ do
267 go (n-1) 284 go (n-1)
268 return w 285 return w
269 286
287-- C versions
288
289constantAux fun x n = unsafePerformIO $ do
290 v <- createVector n
291 px <- newArray [x]
292 app1 (fun px) vec v "constantAux"
293 free px
294 return v
295
296constantR :: Double -> Int -> Vector Double
297constantR = constantAux cconstantR
298foreign import ccall "constantR" cconstantR :: Ptr Double -> TV
299
300constantC :: Complex Double -> Int -> Vector (Complex Double)
301constantC = constantAux cconstantC
302foreign import ccall "constantC" cconstantC :: Ptr (Complex Double) -> TCV
270---------------------------------------------------------------------- 303----------------------------------------------------------------------
271 304
272-- | Extracts a submatrix from a matrix. 305-- | Extracts a submatrix from a matrix.