DragonPHY
DragonPHY is the second design in the Open Source PHY project at Stanford.
Installation
- Clone the repository.
> git clone https://github.com/StanfordVLSI/dragonphy2.git
- Go into the top-level folder
> cd dragonphy2
- Install the Python package associated with this project.
> pip install -e .
Upgrading
To upgrade to the latest version of DragonPHY:
- Pull changes from the master branch.
> git pull origin master
- Re-install the Python package (since dependencies may have changed):
> pip install -e .
Running tests
- First install pytest if it is not already installed:
> pip install pytest
- Then, in the top directory of the project, run the tests in the tests directory:
> pytest tests