├── .gitignore ├── Makefile ├── README.md ├── cnn_pcpi.v ├── firmware ├── cnn_pcpi.c ├── custom_ops.S ├── firmware.h ├── irq.c ├── makehex.py ├── print.c ├── sections.lds ├── start.S └── stats.c ├── image ├── cat1.jpg ├── cat1.txt ├── cat1_predict.txt ├── cat2.jpg ├── cat2.txt ├── cat2_predict.txt ├── dingo.jpg ├── dingo.txt ├── dingo_predict.txt ├── dog1.jpg ├── dog1.txt ├── dog1_predict.txt ├── dog2.jpg ├── dog2.txt ├── dog2_predict.txt ├── house1.jpg ├── house1.txt ├── house1_predict.txt ├── house2.jpg ├── house2.txt └── house2_predict.txt ├── image_converter.py ├── picorv32.v ├── showtrace.py ├── softmax.py ├── synset_words.txt ├── testbench_pcpi.v └── vgg19.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/README.md -------------------------------------------------------------------------------- /cnn_pcpi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/cnn_pcpi.v -------------------------------------------------------------------------------- /firmware/cnn_pcpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/firmware/cnn_pcpi.c -------------------------------------------------------------------------------- /firmware/custom_ops.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/firmware/custom_ops.S -------------------------------------------------------------------------------- /firmware/firmware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/firmware/firmware.h -------------------------------------------------------------------------------- /firmware/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/firmware/irq.c -------------------------------------------------------------------------------- /firmware/makehex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/firmware/makehex.py -------------------------------------------------------------------------------- /firmware/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/firmware/print.c -------------------------------------------------------------------------------- /firmware/sections.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/firmware/sections.lds -------------------------------------------------------------------------------- /firmware/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/firmware/start.S -------------------------------------------------------------------------------- /firmware/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/firmware/stats.c -------------------------------------------------------------------------------- /image/cat1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/image/cat1.jpg -------------------------------------------------------------------------------- /image/cat1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/image/cat1.txt -------------------------------------------------------------------------------- /image/cat1_predict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/image/cat1_predict.txt -------------------------------------------------------------------------------- /image/cat2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/image/cat2.jpg -------------------------------------------------------------------------------- /image/cat2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/image/cat2.txt -------------------------------------------------------------------------------- /image/cat2_predict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/image/cat2_predict.txt -------------------------------------------------------------------------------- /image/dingo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/image/dingo.jpg -------------------------------------------------------------------------------- /image/dingo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/image/dingo.txt -------------------------------------------------------------------------------- /image/dingo_predict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/image/dingo_predict.txt -------------------------------------------------------------------------------- /image/dog1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/image/dog1.jpg -------------------------------------------------------------------------------- /image/dog1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/image/dog1.txt -------------------------------------------------------------------------------- /image/dog1_predict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/image/dog1_predict.txt -------------------------------------------------------------------------------- /image/dog2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/image/dog2.jpg -------------------------------------------------------------------------------- /image/dog2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/image/dog2.txt -------------------------------------------------------------------------------- /image/dog2_predict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/image/dog2_predict.txt -------------------------------------------------------------------------------- /image/house1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/image/house1.jpg -------------------------------------------------------------------------------- /image/house1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/image/house1.txt -------------------------------------------------------------------------------- /image/house1_predict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/image/house1_predict.txt -------------------------------------------------------------------------------- /image/house2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/image/house2.jpg -------------------------------------------------------------------------------- /image/house2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/image/house2.txt -------------------------------------------------------------------------------- /image/house2_predict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/image/house2_predict.txt -------------------------------------------------------------------------------- /image_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/image_converter.py -------------------------------------------------------------------------------- /picorv32.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/picorv32.v -------------------------------------------------------------------------------- /showtrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/showtrace.py -------------------------------------------------------------------------------- /softmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/softmax.py -------------------------------------------------------------------------------- /synset_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/synset_words.txt -------------------------------------------------------------------------------- /testbench_pcpi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/testbench_pcpi.v -------------------------------------------------------------------------------- /vgg19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romulus0914/CNN_VGG19_verilog/HEAD/vgg19.py --------------------------------------------------------------------------------