Skip to content

A Parallel Framework for Simulating Large-Neighborhood Cellular Automata on Reconfigurable Logic. Dipl. Eng. thesis project.

License

Notifications You must be signed in to change notification settings

nkyparissas/Cellular_Automata_FPGA

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A Parallel Framework for Simulating Large-Neighborhood Cellular Automata on Reconfigurable Logic

This thesis project implements a parallel framework for simulating cellular automata with the use of FPGAs in real time. The project is automatically generated based on the generic variables found on TOP_LEVEL.vhd, which the user has to adjust according to the cellular automaton rule they want to simulate. The only part of the project that must be designed by the user is the CA_Engine.vhd file, which is specific to each cellular automaton rule. This repository contains three CA_Engine examples that can be used as a template.

A detailed description of the design's operation can be found in the thesis text (corrections). You can also find more information in the papers originated from this work (listed below).

Vivado Settings

The example projects found in this repository were synthesized and implemented with the use of Vivado 2018.1 for Digilent's Nexys 4 DDR board which features a Xilinx Artix 7 FPGA. The netlist constraints uploaded in this repository concern Nexys 4 DDR. In case the user wants to use a different board, different netlist constraints must be used.

The TOP_LEVEL.vhd and GRID_LINES_TOROIDAL_BUFFER.vhd files require VHDL 2008 ("Source Node Properties" / "Type" / "VHDL 2008").

The timing constraints are to be used only during the implementation phase and not during synthesis. However, in case several timing constraints are not recognized, try performing synthesis without hierarchy flattening (set at "rebuilt" by default). While Vivado's default settings are more than capable of implementing this design for simple cellular automata, complex rules which might be pushing your FPGA's capabilities to the edge may require the Performance_Explore or Performance_ExtraTimingOpt directives for implementation.

Initialization

An initial configuration of the automaton's grid, also commonly known as the cellular automaton's initial state, is required in order for a cellular automaton to begin its operation. This initial state is set by assigning a state for each cell of the grid.

As far as our design is concerned, the preparation of the grid's initial configuration must be prepared in the host computer before our system begins its operation. Due to the fact that this is a one-person project focusing on hardware design, the process designed for this task consists of a few basic scripts and programs instead of developing a complete software suite with a graphical user interface. This process, which is shown in the figure below and described later in detail, comprises a simple yet efficient and ubiquitous way for preparing an initial configuration for our system.

The first step of the process is to prepare a bitmap image of the initial state of the automaton's grid. A bitmap image is a suitable way of representing the grid for two reasons. First, it constitutes a visual way of representing the grid's data which helps the user have a complete view of the grid after every modification, no matter how major or minor that is. Second, bitmap image pixels can be represented by a variable number of bits per pixel. This feature is convenient for us, as there can be a direct match between pixels of 4 bits (16 colors) and 4-bit grid cells, or between pixels of 8 bits (256 colors) and 8-bit grid cells.

Any image editing software which can handle bitmap files will do for the task. All images prepared for the application examples of this thesis were designed with Microsoft Paint, whose 16-color palette is one of those also supported by our system's graphics subsystem.

Once the bitmap image of the grid is complete, a Matlab script transforms the image into a delimited text file which contains space-separated pixel values. Every text line represents a different row of the image.

An executable running in Microsoft Windows handles the UART connection between the host computer and the FPGA board and transfers the text file to our system via USB at a rate of 2 MBd. The file transfer time depends on the cell's size in bits, since we can pack either one or two cells per byte being transmitted. A grid consisting of 8-bit cells takes up to 10 seconds to be transmitted, while transmitting a 4-bit cells grid takes up half the time.

After initialization is complete, the system starts displaying the contents of the memory on screen alternating between the two memory segments for the purpose of double buffering. Our design executes the simulation of cellular automata in real time, which means that it produces and displays 60 cellular automaton generations per second.

Controls

  • Up Button: the simulation runs at full speed (real-time 60 FPS)
  • Down Button: the simulation runs at 1 FPS (default)
  • Left Button: the simulation pauses and the current frame is transmitted back to the host computer via UART

License

This work is licensed under a Creative Commons Attribution 4.0 International Public License.

NOTES

May 2020: Successfully synthesized and implemented with Vivado 2019.2.

March 2023: Fixed neighborhood sliding window in CA Engine: no mirroring, changed (i,j) to follow the (lines,columns) convention. The issue only appears in non-symmetrical neighborhoods. This fix has not been tested. If unsure, for symmetrical neighborhoods please use the previous commit. Many Thanks to Manolis Milonakis for spotting the issue and for suggesting solutions.

Papers

  1. Nikolaos Kyparissas and Apostolos Dollas, "Large Scale Cellular Automata on FPGAs: A Generic Architecture and a Framework", ACM Transactions on Reconfigurable Technology and Systems, 14, 1, Article 5, Dec. 2020.
  2. Nikolaos Kyparissas and Apostolos Dollas, "An FPGA-based Architecture to Simulate Cellular Automata with Large Neighborhoods in Real Time", in FPL 2019, Barcelona, Spain, September 2019.
  3. Nikolaos Kyparissas and Apostolos Dollas, "Field Programmable Gate Array Technology as an Enabling Tool Towards Large-Neighborhood Cellular Automata on Cells with Many States", in HPCS 2019, Dublin, Ireland, July 2019.

About

A Parallel Framework for Simulating Large-Neighborhood Cellular Automata on Reconfigurable Logic. Dipl. Eng. thesis project.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published