Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Labs for the Agile Hardware Design course in Jupyter Notebooks. The binder link
- Activate the environment via `source chisel_nb_env/bin/activate`.
- Start Jupyter Notebook via `jupyter notebook` then navigate to the provided url in your browser.
- Use the file browser to navigate to the lab.
- Lab 6 requires the `z3` SMT solver to be installed and visible on `PATH`. `z3` can be installed using your system package manager or from the z3 releases page.

### Acknowledgements
`resource/chisel_deps.sc` and `binder` configs are borrowed from the Chisel bootcamp: https://github.com/freechipsproject/chisel-bootcamp
2 changes: 1 addition & 1 deletion lab5/lab5.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@
},
"source": [
"## Problem 1 (6 pts) - Method Templated for Chisel Types\n",
"> Write a generic `connect` method that takes in two generic arguments `a` and `b` of type `chisel3.Data` and connects `a` (input) to `b` (output)."
"> Write a generic `connect` method that takes in two generic arguments `a` and `b` of type `chisel3.Data` and connects `a` (output) to `b` (input)."
]
},
{
Expand Down
8 changes: 8 additions & 0 deletions lab6/lab6.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,14 @@
"import chiseltest.RawTester._"
]
},
{
"cell_type": "markdown",
"id": "6a0abded",
"metadata": {},
"source": [
"**Note**: If running a local installation, this lab requires the `z3` SMT solver to be installed and visible on `PATH`. `z3` can be installed using your system package manager or from the z3 releases page. "
]
},
{
"cell_type": "markdown",
"id": "20f9ad8d-298f-421b-bc96-58b77f73af6b",
Expand Down