2010-08-27 12:28:02 -04:00
|
|
|
#!/usr/bin/python
|
|
|
|
#
|
|
|
|
# flam3cuda, one of a surprisingly large number of ports of the fractal flame
|
|
|
|
# algorithm to NVIDIA GPUs.
|
|
|
|
#
|
|
|
|
# This one is copyright 2010 Steven Robertson <steven@strobe.cc>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License version 2 or later
|
|
|
|
# as published by the Free Software Foundation.
|
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
2010-08-30 14:45:44 -04:00
|
|
|
from ctypes import *
|
2010-08-27 12:28:02 -04:00
|
|
|
|
|
|
|
import numpy as np
|
|
|
|
|
2010-09-01 21:09:40 -04:00
|
|
|
from cuburnlib.device_code import MWCRNGTest
|
|
|
|
from cuburnlib.cuda import LaunchContext
|
2010-08-30 14:45:44 -04:00
|
|
|
from fr0stlib.pyflam3 import *
|
|
|
|
from fr0stlib.pyflam3._flam3 import *
|
|
|
|
from cuburnlib.render import *
|
2010-08-27 12:28:02 -04:00
|
|
|
|
|
|
|
def main(genome_path):
|
2010-09-01 21:09:40 -04:00
|
|
|
ctx = LaunchContext([MWCRNGTest], block=(256,1,1), grid=(64,1), tests=True)
|
|
|
|
ctx.compile(verbose=True)
|
|
|
|
ctx.run_tests()
|
2010-08-27 12:28:02 -04:00
|
|
|
|
2010-08-28 16:56:05 -04:00
|
|
|
with open(genome_path) as fp:
|
2010-08-30 14:45:44 -04:00
|
|
|
genomes = Genome.from_string(fp.read())
|
|
|
|
render = Render(genomes)
|
|
|
|
render.render_frame()
|
2010-08-27 12:28:02 -04:00
|
|
|
|
|
|
|
#genome.width, genome.height = 512, 512
|
|
|
|
#genome.sample_density = 1000
|
|
|
|
#obuf, stats, frame = genome.render(estimator=3)
|
|
|
|
#gc.collect()
|
|
|
|
|
|
|
|
##q.put(str(obuf))
|
|
|
|
##p = Process(target=render, args=(q, genome_path))
|
|
|
|
##p.start()
|
|
|
|
|
|
|
|
#window = pyglet.window.Window()
|
|
|
|
#image = pyglet.image.ImageData(genome.width, genome.height, 'RGB', obuf)
|
|
|
|
#tex = image.texture
|
|
|
|
|
|
|
|
#@window.event
|
|
|
|
#def on_draw():
|
|
|
|
#window.clear()
|
|
|
|
#tex.blit(0, 0)
|
|
|
|
|
|
|
|
#pyglet.app.run()
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
if len(sys.argv) < 2 or not os.path.isfile(sys.argv[1]):
|
|
|
|
print "First argument must be a path to a genome file"
|
|
|
|
sys.exit(1)
|
|
|
|
main(sys.argv[1])
|
|
|
|
|