dwosion / SPAD_CNN

Depth sensing using SPAD sensors and CNNs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ECE1373_project

Network to be built

NETWORK

Welcome to the project of ECE1373 This project is to use CNN for depth optimization of SPAD sensors' output. This will describe how to run the provided sample code in this directory.

Code Organization

The source code is organized as follows:

  • conv directory has files for the convolution layer
  • conv3d directory contains files for convolution 3d layer
  • conv_trans3d directory contains files for convolution transpose 3d layer
  • data stores binaries for the weights, biases, inputs and reference output. This also contains a script extractParams to create new binaries for other layers.
  • util directory has the shared function to read input.
  • hls_proj contains tcl scripts to create a vivado_hls project for convolution and fc.
  • pci_tests includes tests to read and write to pcie.
  • 8v3_shell contains files and projects for the hypervisor and user appplications

To create a project with the sample unoptimized code and run csim and synth design do the following:

Pre-requisites

  1. Install vivado 2017.2 in /opt/ (Already done in the container)
  2. Install caffe in /opt/ (Already done in the container)
  3. source sourceme.sh

FPGA Hypervisor

We use partial reconfiguration to program your applcation into an already programmed FPGA (we call this the Hypervisor) The Hypervisor contains the following:

  • A PCIe module that can address into 1 MB of control registers through AXI-Lite and 2 GB of off-chip memory
  • An off-chip memory controller interfacing with 8GB of off-chip memory (first 2 GB is shared with PCIe addressable space)
  • Partial region to be programmed with partial reconfiguration, contains an AXI-Lite Slave interface to receive control information from PCIe and contains an AXI-Master interface connecting to the off-chip memory controller.

NOTE: WE HAVE CREATED THE HYPERVISOR FOR YOU AND IT CAN BE FOUND IN http://www.eecg.toronto.edu/~tarafda1/hypervisors/adm-8v3/static_routed_v1.dcp. You do not need to download it. It should be available already but if you need it, you can find it online

Do not create a new hypervisor as you will be sharing this FPGA with your colleagues who will be building with the same hypervisor

Creating the Data

To create the data run the nn_params/extractParams_imagenet.py from the project root. You can specify additinal args (optionally)

python nn_params/extractParams_imagenet.py --total_batches <number of batches> --model <location of deploy.txt> --weights <location of caffemodel (weights)> --mean_file <location of mean file> --image_root <location of where you would like to dump your batch data> --imagenet_val_path <location of imagenet database>

All of these are optional flags. The rest of the test applications assume the current locations of where the images are being dumped, so it is recommended that you do not input any flags to begin with.

python nn_params/extractParams_imagenet.py

Make sure the value of total_batches (default 10) matches that in the test application.

Running an Example

We have provided an example with PCIe connecting to a convolution layer and an fc layer directly through PCIe. These modules are using only off-chip memory to communicate with the host. (is this the best way to do it?) We have verified functionality on both the conv and fc layer. Remember to add Vivado to the PATH, connect to the license server, and source sourceme.sh in the ECE1373_assignment2/ directory.

make pr

  • This will create the vivado_hls projects in hls_proj, and create a new application in a partial region using the hypervisor provided.

You will then need to program the FPGA. To program the FPGA run the following: /opt/util/prog_util/program.sh 8v3_shell/pr_region_test_proj_pblock_pr_region_partial.bit 8v3_shell/pr_region_test_proj_pblock_pr_region_partial_clear.bit

Where the first argument is the partial bitstream and the second argument is the clear bitstream.

You can look at the generated slave_axi registers to see which offsets you need to program the control registers. For example for the fc look at ./hls_proj/fc_proj/solution1/impl/verilog/fc_layer_CTRL_BUS_s_axi.v

Remember to create the data (see above)

Look at the Makefile to see the tests. To build for example a sample conv_layer in hardware it is. make hw_conv_layer ./hw_conv_layer

This writes control registers, copies data into the off-chip memory, starts the application and reads data out. Note that with the default batch number and code, this will take about 50 minutes (5 min per batch).

Creating Your Own Application

Run the following: make pr_modify

This does the same thing as the first half of our make pr. This imports the hypervisor dcp, and makes the example we provided. This then opens the block diagram in the GUI. You can modify the block diagram to import your own IPs. Remember to also modify your addresses for your interconnect in Address Editor. Afterwards you will run the following in the tcl console within vivado:

source 8v3_shell/create_pr2_1.tcl

This will create the wrapper, and synthesize the bitstream. The bitstream generated will be in ./8v3_shell/pr_region_test_pblock_partial.bit.

Programming The FPGA

To program the FPGA you will need to use the program script provided in /opt/util/progutil/program.sh

You will give it two arguments, the first being your partial bitstream and the second being the clear bitstream. You will see both in the 8v3_shell directory. It is important you give both bitstreams and you use this script to program the partial regions or there is a chance the FPGA gets stuck in a bad state.

Programming template: /opt/util/prog_util/program.sh <partial.bit file> <partial_clear.bit file>

Verifying Accuracy

The above test creates a file in the data directory for each batch layer called dma_out. The nn_params/softMax.py script pumps the data out of the last fully connected layer through a softmax and compares the results with the label information. This will give you an accuracy result of your network.

To verify accuracy you can run the following:

python nn_params/softMax.py --total_batches <number of batches> --model <location of deploy.txt> --weights <location of caffemodel (weights)> --image_root_path <location of where you would like to dump your batch data> --last_fc <the name of the fully connected layer before the softmax> --softmax <name of the softmax layer>

Like the above python script in generating data, the default parameters are what you would be using for this assignment so:

python nn_params/softMax.py

Will suffice

About

Depth sensing using SPAD sensors and CNNs


Languages

Language:VHDL 23.0%Language:C 18.5%Language:C++ 18.2%Language:Python 14.8%Language:TeX 13.5%Language:Tcl 9.7%Language:Shell 1.6%Language:Makefile 0.8%