You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
karl fabc2daba9 Increase column limit in format 3 years ago
tools Add formatting tools 3 years ago
.clang-format Increase column limit in format 3 years ago
.gitignore Add gitignore 3 years ago
LICENSE Add License 3 years ago
Makefile OpenCL called correctly, but not yet giving result 3 years ago
README.md Update README with build/run instructions 3 years ago
Timing.cpp Time measurement + basic optimizations 3 years ago
Timing.h Time measurement + basic optimizations 3 years ago
gol.cl OpenCL mode is working! 3 years ago
main.cpp Increase column limit in format 3 years ago

README.md

Game of Life

Conway's Game of Life implemented efficiently in C++.

The input file must contain the number of columns and rows to expect. Live cells are marked as x, dead cells are .. For example:

3,2
...
.x.

Build & Run

Build with make.

Run with ./gol --load infile.gol --save outfile.gol --generations 100. Optionally, also print a time measurement to stdout with --measure.