-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParMandelbrot-prints.hs
More file actions
56 lines (44 loc) · 2.1 KB
/
ParMandelbrot-prints.hs
File metadata and controls
56 lines (44 loc) · 2.1 KB
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
-- File: ParMandelbrot-prints.hs
-- Author: Justin Dawson
-- This forces execution before the 'send context' call
{-# LANGUAGE OverloadedStrings #-}
module Main where
import Graphics.Blank
import qualified Data.Vector.Unboxed as V
import Data.Complex
import qualified Data.Text as Text
import Control.Concurrent
import Control.Monad
import Control.Parallel.Strategies
step = 0.005
mySquareList xs = forM_ xs (\(x,y,color) -> mySquare x y color)
mySquare x y color = do
save()
translate((x*300)+800,(y*300)+500)
fillStyle color
fillRect(0,0,2,2)
restore()
redYellow = ["F00","F10","F20","F30","F40","F50","F60","F70","F80","F90","FA0","FB0"]
blackGreen = ["000","010","020","030","040","050","060","070","080","090","0A0","0B0"]
blueGreen = ["0F0","0E1","0D2","0C3","0B4","0A5","096","087","078","069","05A","04B"]
yellowBlue = ["FF0","EE1","DD2","CC3","BB4","AA5","996","887","778","669","55A","44B"]
yellowRedBlue = ["FF0","FE0","FC0","FA0","F84","A75","096","087","078","069","05A","04B"]
blackGreenBlue = ["000","0A0","0A0","0C0","0F0","0C5","0A6","087","078","069","05A","04B"]
--intToHex n = (['0'..'9'] ++ ['A'..'F']) !! ((n `div` 16) )
--intToHex n = (['A','A','B','B','C','C','D','D','E','E','F','F']) !! (if (n `div` 12) > 12 then 11 else (n`div`12) )
intToHex:: Int -> String
intToHex n = blackGreen !! (if (n `div` 12) >= 12 then 11 else (n`div`12) )
mandelbrot:: Double -> Double -> (Double, Double,Text.Text)
mandelbrot x y = let val = x :+ y
zs = take 255 $ iterate (\z -> z^2 +val) 0
iter = length $ takeWhile (\intermediate -> magnitude intermediate < 2 ) $ zs
in (x,y,Text.pack ("#" ++ intToHex iter))
main :: IO ()
main = blankCanvas 3000 $ \ context -> do
putStrLn "Received Request"
let v = [(x,y)| y<-[1,(1-step) .. -1], x <-[-2, (-2 + step) .. 0.5]]
let res = parMap (rparWith rdeepseq) (\(x,y)->mandelbrot x y) $ v
print (length (filter (\(x,y) -> x < 0.5) v))
print (length (filter (\(x,y,color) -> x < 0.5) res))
send context $ mySquareList res
return ()