├── README.md ├── conv_core ├── conv_core.cpp ├── conv_core.h └── main.cpp ├── pool_core ├── main.cpp ├── pool_core.cpp └── pool_core.h ├── tensorflow ├── ai.bit ├── ai.tcl ├── dat2bin ├── dat2bin.c ├── helloworld.py ├── input_data.py ├── mnist_int16_test.py ├── num_check.py └── record │ ├── W_conv1.bin │ ├── W_conv1.dat │ ├── W_conv2.bin │ ├── W_conv2.dat │ ├── W_fc1.bin │ ├── W_fc1.dat │ ├── W_fc2.bin │ ├── W_fc2.dat │ ├── b_conv1.bin │ ├── b_conv1.dat │ ├── b_conv2.bin │ ├── b_conv2.dat │ ├── b_fc1.bin │ ├── b_fc1.dat │ ├── b_fc2.bin │ └── b_fc2.dat ├── vivado1.png ├── vivado2.png ├── vivado3.png ├── vivado5.png └── vivado6.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/README.md -------------------------------------------------------------------------------- /conv_core/conv_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/conv_core/conv_core.cpp -------------------------------------------------------------------------------- /conv_core/conv_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/conv_core/conv_core.h -------------------------------------------------------------------------------- /conv_core/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/conv_core/main.cpp -------------------------------------------------------------------------------- /pool_core/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/pool_core/main.cpp -------------------------------------------------------------------------------- /pool_core/pool_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/pool_core/pool_core.cpp -------------------------------------------------------------------------------- /pool_core/pool_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/pool_core/pool_core.h -------------------------------------------------------------------------------- /tensorflow/ai.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/tensorflow/ai.bit -------------------------------------------------------------------------------- /tensorflow/ai.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/tensorflow/ai.tcl -------------------------------------------------------------------------------- /tensorflow/dat2bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/tensorflow/dat2bin -------------------------------------------------------------------------------- /tensorflow/dat2bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/tensorflow/dat2bin.c -------------------------------------------------------------------------------- /tensorflow/helloworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/tensorflow/helloworld.py -------------------------------------------------------------------------------- /tensorflow/input_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/tensorflow/input_data.py -------------------------------------------------------------------------------- /tensorflow/mnist_int16_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/tensorflow/mnist_int16_test.py -------------------------------------------------------------------------------- /tensorflow/num_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/tensorflow/num_check.py -------------------------------------------------------------------------------- /tensorflow/record/W_conv1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/tensorflow/record/W_conv1.bin -------------------------------------------------------------------------------- /tensorflow/record/W_conv1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/tensorflow/record/W_conv1.dat -------------------------------------------------------------------------------- /tensorflow/record/W_conv2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/tensorflow/record/W_conv2.bin -------------------------------------------------------------------------------- /tensorflow/record/W_conv2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/tensorflow/record/W_conv2.dat -------------------------------------------------------------------------------- /tensorflow/record/W_fc1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/tensorflow/record/W_fc1.bin -------------------------------------------------------------------------------- /tensorflow/record/W_fc1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/tensorflow/record/W_fc1.dat -------------------------------------------------------------------------------- /tensorflow/record/W_fc2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/tensorflow/record/W_fc2.bin -------------------------------------------------------------------------------- /tensorflow/record/W_fc2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/tensorflow/record/W_fc2.dat -------------------------------------------------------------------------------- /tensorflow/record/b_conv1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/tensorflow/record/b_conv1.bin -------------------------------------------------------------------------------- /tensorflow/record/b_conv1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/tensorflow/record/b_conv1.dat -------------------------------------------------------------------------------- /tensorflow/record/b_conv2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/tensorflow/record/b_conv2.bin -------------------------------------------------------------------------------- /tensorflow/record/b_conv2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/tensorflow/record/b_conv2.dat -------------------------------------------------------------------------------- /tensorflow/record/b_fc1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/tensorflow/record/b_fc1.bin -------------------------------------------------------------------------------- /tensorflow/record/b_fc1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/tensorflow/record/b_fc1.dat -------------------------------------------------------------------------------- /tensorflow/record/b_fc2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/tensorflow/record/b_fc2.bin -------------------------------------------------------------------------------- /tensorflow/record/b_fc2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/tensorflow/record/b_fc2.dat -------------------------------------------------------------------------------- /vivado1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/vivado1.png -------------------------------------------------------------------------------- /vivado2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/vivado2.png -------------------------------------------------------------------------------- /vivado3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/vivado3.png -------------------------------------------------------------------------------- /vivado5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/vivado5.png -------------------------------------------------------------------------------- /vivado6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canteen-man/CNN_FPGA_ZYNQ_PYNQ/HEAD/vivado6.png --------------------------------------------------------------------------------