jogomojo / DSP-PYNQ-1

A PYNQ overlay demonstrating Pythonic DSP running on Zynq UltraScale+

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DSP-PYNQ

These notebooks act as a tutorial on how to develop a DSP application using Python and PYNQ. The first notebook is a primer on both DSP and Python packages centered around DSP functionality. The second notebook takes the knowledge learned from the first and uses it to perform similar functions, but using hardware IP on the programmable logic.

Support

This repo supports the following boards:

  • ZCU111
  • Ultra96 v1
  • Ultra96 v2

The Ultra96 version of the design only supports Jupyter Notebooks.

Getting started

All the material in this repo is available on the v2.4.1 PYNQ image for the ZCU111 - as part of the PYNQ RFSoC Workshop. This is not the case for the Ultra96, meaning this repo has to be installed separately if using that board.

The SD card images for both boards can be downloaded from the PYNQ website and burned to a micro SD card with at least 8GB capacity.

To install this repo separately, follow the instructions below.

Overlay installation

We supply a pre-built wheel containing the bitstream for that tagged release. This can be installed directly with Pip using the Terminal built in to JupyterLab.

# pip3 install https://github.com/Xilinx/DSP-PYNQ/releases/download/v1.0_$BOARD/dsp_pynq-1.0-py3-none-any.whl
# python3 -c 'import dsp_pynq; dsp_pynq.install_notebooks()'

The notebooks should then be available from the Jupyter file browser inside the dsp_pynq directory.

Building the wheel

NOTE: This must be built on an x86 Linux PC, with Vivado and Python 3 installed and available on $PATH. This cannot be built on the board.

You can rebuild the entire wheel by running the following commands.

$ git clone https://github.com/Xilinx/DSP-PYNQ
$ cd DSP-PYNQ
# to build for ZCU111
$ BOARD=ZCU111 make wheel
# to build build for Ultra96
$ BOARD=Ultra96 make wheel

To build only the Vivado project you can run the following command.

# to build for ZCU111
$ make zcu111
# to build for Ultra96
$ make ultra96

About

A PYNQ overlay demonstrating Pythonic DSP running on Zynq UltraScale+

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Tcl 74.2%Language:Jupyter Notebook 23.0%Language:Python 2.4%Language:Makefile 0.4%