Home

Awesome

PyRTL

PyPI version Build Status Code Coverage Documentation Status Binder

PyRTL provides a collection of classes for pythonic register-transfer level design, simulation, tracing, and testing suitable for teaching and research. Simplicity, usability, clarity, and extensibility rather than performance or optimization is the overarching goal. Features include:

What README would be complete without a screenshot? Below you can see the waveform rendered right on the terminal for a small state machine written in PyRTL.

Command-line waveform for PyRTL state machine

For users, more info and demo code is available on the PyRTL project web page.

Package Contents

If you are just getting started with PyRTL it is suggested that you start with the examples first to get a sense of the "thinking with pyrtls" required to design hardware in this way. If you are looking for a deeper understanding, dive into the code for the object Block. It is the core data structure at the heart of PyRTL and defines its semantics at a high level -- everything is converted to or from the small, simple set of primitives defined there.

In the package you should find the following files and Directories

Testing requires the packages tox and nose. Once installed a complete test of the system should be possible with the simple command tox and nothing more.

Contributing to PyRTL

Picking a first project

Coding style

Workflow

Documentation

""" One Line Summary (< 80 chars) on what the function does, followed by period.

:param [optional param type] param_name : parameter description 
:param [optional param type] param_name : Longer parameter descriptions take up a newline
  with two leading spaces like this
:return [optional return type]: return description

A long description of what this function does. Talk about what the user should expect from this function
and also what the users needs to do to use the function (this part is optional)
"""

# Developer Notes (Optional):
# These would be anything that the user does not need to know in order to use the functions.
# Such things include internal workings of the function, the logic behind it, how to extend
# it (unless the function was mainly intended to be extended). 

Using PyRTL

We love to hear from users about their projects, and if there are issues we will try our best to push fixes quickly. You can read more about how we have been using it in our research at UCSB both in simulation and on FPGAs in our PyRTL paper at FPL.

Related Projects

It is always important to point out that PyRTL builds on the ideas of several other related projects as we all share the common goal of trying to make hardware design a better experience! You can read more about those relationships on our PyRTL project web page.