summaryrefslogtreecommitdiff
path: root/test/Examples/Mandel
diff options
context:
space:
mode:
Diffstat (limited to 'test/Examples/Mandel')
-rw-r--r--test/Examples/Mandel/Main.hs14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/Examples/Mandel/Main.hs b/test/Examples/Mandel/Main.hs
new file mode 100644
index 0000000..f1d49d1
--- /dev/null
+++ b/test/Examples/Mandel/Main.hs
@@ -0,0 +1,14 @@
+module Examples.Mandel.Main where
+
+import qualified Data.Array.Accelerate as A
+import qualified Data.Array.Accelerate.Interpreter as I
+
+import qualified Examples.Mandel as Mandel
+import Examples.Utils.PPM
+
+
+main :: IO ()
+main = do
+ let viewport = ((640, 480), (-0.5, 0.0), 3.0)
+ img = I.run1 Mandel.afun (A.fromList A.Z [(viewport, 200)])
+ ppmWrite img "mandel.ppm"