Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
/ mpi_x11blit Public archive

Toy program that renders a raw bitmap in parallel using MPI.

License

Notifications You must be signed in to change notification settings

anpep-uclm/mpi_x11blit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mpi_x11blit

Toy program that renders a raw bitmap in parallel using MPI.

Build Instructions

*NIX

$ git clone https://github.com/anpep/mpi_x11blit
$ cd mpi_x11blit
$ make
$ mpirun -n 1 mpi_x11blit 4 input.dat

Windows

  1. Download and install latest MS-MPI runtime and SDK.
  2. Clone this repository and open the mpi_x11blit.sln solution.
  3. Build the project and run using mpiexec instead of mpirun:
mpiexec -n 1 x64\Release\mpi_x11blit.exe 4 input.dat

Open-source license

mpi_x11blit -- Renders raw RGB data supplied by peers in parallel
Copyright (c) 2021 Ángel Pérez <[email protected]>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, version 2.

This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.