├── Makefile ├── README.md ├── src ├── define.v ├── global_buffer.v ├── top.v └── tpu.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 ├── tpu_area.log └── tpu_timing.log /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiehong/tpu/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiehong/tpu/HEAD/README.md -------------------------------------------------------------------------------- /src/define.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiehong/tpu/HEAD/src/define.v -------------------------------------------------------------------------------- /src/global_buffer.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiehong/tpu/HEAD/src/global_buffer.v -------------------------------------------------------------------------------- /src/top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiehong/tpu/HEAD/src/top.v -------------------------------------------------------------------------------- /src/tpu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiehong/tpu/HEAD/src/tpu.v -------------------------------------------------------------------------------- /tb/inputs1/matrix_a.txt: -------------------------------------------------------------------------------- 1 | 1, 2 2 | 3, 4 3 | -------------------------------------------------------------------------------- /tb/inputs1/matrix_b.txt: -------------------------------------------------------------------------------- 1 | 5, 1 2 | 1, 6 3 | -------------------------------------------------------------------------------- /tb/inputs2/matrix_a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiehong/tpu/HEAD/tb/inputs2/matrix_a.txt -------------------------------------------------------------------------------- /tb/inputs2/matrix_b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiehong/tpu/HEAD/tb/inputs2/matrix_b.txt -------------------------------------------------------------------------------- /tb/inputs3/matrix_a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiehong/tpu/HEAD/tb/inputs3/matrix_a.txt -------------------------------------------------------------------------------- /tb/inputs3/matrix_b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiehong/tpu/HEAD/tb/inputs3/matrix_b.txt -------------------------------------------------------------------------------- /tb/matmul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiehong/tpu/HEAD/tb/matmul.py -------------------------------------------------------------------------------- /tb/top_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiehong/tpu/HEAD/tb/top_tb.v -------------------------------------------------------------------------------- /tpu_area.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiehong/tpu/HEAD/tpu_area.log -------------------------------------------------------------------------------- /tpu_timing.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsiehong/tpu/HEAD/tpu_timing.log --------------------------------------------------------------------------------