DPS921 Team Optimize

From CDOT Wiki
Revision as of 17:32, 27 November 2016 by Lkapur (talk | contribs) (The Game of Life)
Jump to: navigation, search

The Game of Life

Group Members

  1. Luv Kapur, Research, and everything else.

Progress

Entry on: November 6th 2016

Assignment page (Optimize) has been created and he following project topic is being researched on

  1. The Game Of Life - Cilk Plus Implementation - [1]

Entry on: November 14th 2016

The Game of Life, is thoroughly researched and the following key points have been derived:

  1. Problem Description and Algorithm Analysis
  2. Serial Implementation
  3. Cilk Plus Implementation
  4. OpenMP Implementation
  5. TBB Implementation
  6. Comparative Analysis of all the parallel versions

Research

References

All the research is based from the following resources:

  • Comway's Game Of Life - [2]

Entry on: November 27th 2016 by Luv Kapur

Comway's Game of Life - Algorithm Description

Comway's Game of Life is a algorithmic representation of cellular automation. The game is played on an infinite two-dimensional rectangular grid of cells. Each cell has two probable states, alive or dead. Depending on the state of that cell's 8 neighbors, the state of each cell changes each turn of the game, constituting a unique generation on every computation . Neighbors of a cell are cells that touch that cell, either horizontal, vertical, or diagonal from that cell.

The initial pattern is the first generation. The second generation evolves from applying the rules simultaneously to every cell on the game board, i.e. births and deaths happen simultaneously. Afterwards, the rules are iteratively applied to create future generations. For each generation of the game, a cell's status in the next generation is determined by a set of rules. These simple rules are as follows:

  • If the cell is alive, then it stays alive if it has either 2 or 3 live neighbors
  • If the cell is dead, then it springs to life only in the case that it has 3 live neighbors