Skip to content

Pluto notebook in Julia with a simple renderer for generating pictures of the mandelbrot set using CUDA or cpu.

License

Notifications You must be signed in to change notification settings

jornodo/Mandelbrot-renderer

Repository files navigation

Mandelbrot renderer

This is a Pluto notebook in julia that renders pictures of specific coordinates of the mandelbrot set. It includes both a sequential way of doing so on CPU, and utilizes CUDA for rendering on GPU.

Dependencies

In order to run it, you have to have julia installed, along with its dependencies, aswell as having CUDA installed with a compatible nvidia GPU.

To install dependencies, launch the julia REPL and run:

begin
    using Pkg
    dependencies = ["Pluto", "CUDA", "Images", "Colors", "PlutoUI"]
    Pkg.add(dependencies)
end

Running

After dealing with installing the dependencies, all that is left is running the notebook with Pluto.

From the Julia REPL run:

using Pluto; Pluto.run()

This will run the notebook server, and open it as a tab in your browser.

Examples

plot plot plot plot

About

Pluto notebook in Julia with a simple renderer for generating pictures of the mandelbrot set using CUDA or cpu.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages