Skip to content

StanfordVLSI/dragonphy2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

996cc14 · Jun 11, 2021
Jan 13, 2021
Oct 26, 2020
Sep 29, 2020
Nov 19, 2020
Dec 10, 2020
Nov 19, 2020
Jul 8, 2020
Nov 2, 2020
May 11, 2020
May 8, 2020
Dec 10, 2020
Nov 19, 2020
Oct 9, 2020
Sep 30, 2019
Sep 24, 2019
Apr 27, 2020
Jun 25, 2020
Jul 22, 2020
May 12, 2020
Oct 22, 2020
Feb 4, 2021
Feb 4, 2021
Dec 10, 2020

Repository files navigation

DragonPHY

BuildKite Status License:Apache-2.0 Code Coverage

DragonPHY is the second design in the Open Source PHY project at Stanford.

Installation

  1. Clone the repository.
> git clone https://github.com/StanfordVLSI/dragonphy2.git
  1. Go into the top-level folder
> cd dragonphy2
  1. Install the Python package associated with this project.
> pip install -e .

Upgrading

To upgrade to the latest version of DragonPHY:

  1. Pull changes from the master branch.
> git pull origin master
  1. Re-install the Python package (since dependencies may have changed):
> pip install -e .

Running tests

  1. First install pytest if it is not already installed:
> pip install pytest
  1. Then, in the top directory of the project, run the tests in the tests directory:
> pytest tests