Parallel
cell.txt
Associated article: Programming the Cell Processor
Tags: C/C++ Parallel Embedded Systems
Published source code accompanying the article by Daniele Paolo Scarpazza, Oreste Villa, and Fabrizio Petrini which presents algorithms and strategies they've used to make breadth-first search on graphs as fast as possible on the Cell multi-core processor. Also see CELL.ZIP.
Programming the Cell Processor by Daniele Paolo Scarpazza, Oreste Villa, and Fabrizio Petrini Listing One #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> /* ... */ /* the graph */ vertex_t * G; /* ...


