├── .gitattributes └── AIC2021_TPU_Template-master ├── .gitignore ├── Makefile ├── README.md ├── img ├── full_system.png ├── gif1.gif ├── gif2.gif ├── matrix_a.png ├── matrix_b.png ├── slide1.PNG ├── slide2.PNG ├── slide3.PNG ├── slide4.PNG ├── slide5.PNG ├── slide52.PNG ├── slide53.PNG ├── slide54.PNG ├── slide55.PNG ├── testbench.png ├── top.png ├── tpu_area.png └── tpu_timing.png ├── src ├── README.md ├── TPU.v ├── define.v ├── global_buffer.v ├── pe.v └── top.v └── tb ├── inputs1 ├── matrix_a.txt └── matrix_b.txt ├── inputs2 ├── matrix_a.txt └── matrix_b.txt ├── inputs3 ├── matrix_a.txt └── matrix_b.txt ├── matmul.py └── top_tb.v /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/.gitattributes -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/.gitignore -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/Makefile -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/README.md -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/img/full_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/img/full_system.png -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/img/gif1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/img/gif1.gif -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/img/gif2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/img/gif2.gif -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/img/matrix_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/img/matrix_a.png -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/img/matrix_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/img/matrix_b.png -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/img/slide1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/img/slide1.PNG -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/img/slide2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/img/slide2.PNG -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/img/slide3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/img/slide3.PNG -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/img/slide4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/img/slide4.PNG -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/img/slide5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/img/slide5.PNG -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/img/slide52.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/img/slide52.PNG -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/img/slide53.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/img/slide53.PNG -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/img/slide54.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/img/slide54.PNG -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/img/slide55.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/img/slide55.PNG -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/img/testbench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/img/testbench.png -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/img/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/img/top.png -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/img/tpu_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/img/tpu_area.png -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/img/tpu_timing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/img/tpu_timing.png -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/src/README.md -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/src/TPU.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/src/TPU.v -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/src/define.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/src/define.v -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/src/global_buffer.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/src/global_buffer.v -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/src/pe.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/src/pe.v -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/src/top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/src/top.v -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/tb/inputs1/matrix_a.txt: -------------------------------------------------------------------------------- 1 | 1, 2 2 | 3, 4 3 | -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/tb/inputs1/matrix_b.txt: -------------------------------------------------------------------------------- 1 | 5, 1 2 | 1, 6 3 | -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/tb/inputs2/matrix_a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/tb/inputs2/matrix_a.txt -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/tb/inputs2/matrix_b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/tb/inputs2/matrix_b.txt -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/tb/inputs3/matrix_a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/tb/inputs3/matrix_a.txt -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/tb/inputs3/matrix_b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/tb/inputs3/matrix_b.txt -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/tb/matmul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/tb/matmul.py -------------------------------------------------------------------------------- /AIC2021_TPU_Template-master/tb/top_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentWang1998/ai_on_chip_project1/HEAD/AIC2021_TPU_Template-master/tb/top_tb.v --------------------------------------------------------------------------------