- Download or clone the repository
- Compile:
gcc -O3 mandel.c -o mandel -pthread
for the pthread version ornvcc -O3 mandel.cu -o mandel
for the CUDA version - Run
./mandel
to generate the default image or run./mandel --help
for more options
gcc -O3 mandel.c -o mandel -pthread
for the pthread version or nvcc -O3 mandel.cu -o mandel
for the CUDA version./mandel
to generate the default image or run ./mandel --help
for more options