summaryrefslogtreecommitdiff
path: root/examples/speed.hs
blob: 22d7220b7afe37010b6634f78825f009e73dcf4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{- speed tests

GNU-Octave (see speed.m in this folder):

./speed.m
  -0.017877255967426   0.000000000000000  -0.999840189089781
   0.000000000000000   1.000000000000000   0.000000000000000
   0.999840189089763   0.000000000000000  -0.017877255967417
9.69 seconds

Mathematica:

rot[a_]:={{ Cos[a], 0, Sin[a]},
          { 0,      1,      0},
          { -Sin[a],0,Cos[a]}}//N

test := Timing[
    n = 100000;
    angles = Range[0.,n-1]/(n-1);
    Fold[Dot,IdentityMatrix[3],rot/@angles] // MatrixForm
]

2.08013 Second
     {{\(-0.017877255967432837`\), "0.`", \(-0.9998401890898042`\)},
      {"0.`", "1.`", "0.`"},
      {"0.9998401890898042`", "0.`", \(-0.017877255967432837`\)}}

$ ghc --make -O speed

$ ./speed 5 100000 1
(3><3)
 [ -1.7877255967425523e-2, 0.0,    -0.9998401890897632
 ,                    0.0, 1.0,                    0.0
 ,      0.999840189089781, 0.0, -1.7877255967416586e-2 ]
0.33 CPU seconds

cos 50000 = -0.0178772559665563
sin 50000 = -0.999840189089790

-}

import Numeric.LinearAlgebra
import System
import Data.List(foldl1')
import System.CPUTime
import Text.Printf
import Debug.Trace

debug x = trace (show x) x

timing act = do
    t0 <- getCPUTime
    act
    t1 <- getCPUTime
    printf "%.2f CPU seconds\n" $ (fromIntegral ((t1 - t0) `div` (10^10)) / 100 :: Double) :: IO ()

op a b = trans $ (trans a) <> (trans b)

op2 a b = trans $ (trans a) + (trans b)

rot' :: Double -> Matrix Double
rot' a = matrix [[ c,0,s],
                 [ 0,1,0],
                 [-s,0,c]]
    where c = cos a
          s = sin a
          matrix = fromLists

rot :: Double -> Matrix Double
rot a = (3><3) [ c,0,s
               , 0,1,0
               ,-s,0,c ]
    where c = cos a
          s = sin a

fun n r = foldl1' (<>) (map r angles)
    where angles = toList $ linspace n (0,1)

main = do
    args <- getArgs
    let [p,n,d] = map read args
    let ms = replicate n ((ident d :: Matrix Double))
    let mz = replicate n (diag (constant (0::Double) d))
    timing $ case p of
        0 -> print $ foldl1' (<>) ms
        1 -> print $ foldl1' (<>) (map trans ms)
        2 -> print $ foldl1' op ms
        3 -> print $ foldl1' op2 mz
        4 -> print $ fun n rot'
        5 -> print $ fun n rot