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
38 changes: 37 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,45 @@ test_run_dir/
.metals
.scalafmt.conf
*.v
*.sv
*.anno.json
site/
.DS_Store
.cache
*.fir
systemc/
systemc/

# --- Vivado Temporary/Generated Files ---
*.jou
*.log
*.str
*.tmp
*.debug
*.zip
*.vds
*.veo
*.wdf
*.vdi
*.dmp
*.rpx
*.rpt

# --- Project Infrastructure Directories ---
*.cache/
*.hw/
*.ip_user_files/
*.runs/
*.sim/
.Xil/

# --- Compilation/Synthesis Artifacts ---
*.dcp
*.hwdef
*_stub.v
*_stub.vhdl
*_funcsim.v
*_funcsim.vhdl

# --- SDK / Vitis ---
*.sdk/
.metadata/
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ push-image-arm64:

docs:
pip3 install -r docs/requirements.txt
mkdocs serve
python3 -m mkdocs serve

clean:
rm -rf project/target project/project/target target *.v *.anno.json
Expand Down
24 changes: 18 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,6 @@ Docs: https://chisel-opennpu.readthedocs.io

This is a chisel workbench designed for someone who like docker containers and vscode dev container plugin.

DEVELOP IN PROGRESS. COMMERCIAL USE IS NOT ALLOWED.

NO LICENSE PROVIDED CURRENTLY.

USE AT YOUR OWN RISK.

## Usage

```bash
Expand All @@ -31,6 +25,24 @@ make docs

Then you can use [vscode dev container plugin](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers) to connect this container. Happy coding (for chip)

## Project Structure
```
├── build.sbt // project top level build
├── docker
│ └── dockerfile // build env docker file
├── docs // documentation
├── ip // IP integration with different EDAs
│ └── xilinx // xilinx vivado
├── Makefile // top level make file
├── mkdocs.yml // readthedocs yaml
├── project // scala project settings
├── README.md
├── src // chisel source
│ ├── main // chisel design
│ └── test // chisel tests
└── top.sv // generated top system verilog
```

## Reference

1. [Chisel Matmul](https://github.com/kazutomo/Chisel-MatMul)
Expand Down
Loading