chamatht / mandelbrot-simd-rs

Rust implementation of mandelbrot set with simd

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mandelbrot-simd-rs

Rust implementation of mandelbrot set with simd(Single instruction, multiple data) using packed-simd crate.

It's recommended to add following to cargo config

rustflags = ["-C", "target-cpu=native"]

This will ensure AVX/AVX2 is used when compiling. (only applicable to x86 machines, that support AVX/AVX2)

To compile: run

cargo build --release

About

Rust implementation of mandelbrot set with simd

License:GNU Lesser General Public License v3.0


Languages

Language:Rust 100.0%