James Rennie

Parallel and Distributed Game of Life

An optimized implementation of Conway's Game of Life leveraging parallel and distributed computing techniques.

Project Overview

This project focused on designing serial, parallel, and distributed versions of Conway’s Game of Life. The aim was to benchmark performance improvements by leveraging multithreading and distributed systems for large-scale grid simulations.

Key Features

Technical Challenges

Implementing efficient grid partitioning for distributed computing was a significant challenge, especially in ensuring minimal communication overhead between nodes. Optimizing Goroutines to avoid bottlenecks in the parallel version was also critical for performance.

Technologies Used

Project Outcome

The parallel and distributed implementations demonstrated significant performance gains over the serial version, particularly for large grid sizes. The project highlighted the potential of parallel and distributed systems for computationally intensive tasks.

Future Improvements

Future enhancements could include optimizing inter-node communication in the distributed implementation and exploring GPU acceleration for further performance gains.