Skip to content

Commit

Permalink
[DOC] VTA installation & basic tutorials (apache#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmoreau89 authored and tqchen committed Jul 12, 2018
1 parent 24e9428 commit 5c8177b
Show file tree
Hide file tree
Showing 10 changed files with 1,554 additions and 228 deletions.
1 change: 1 addition & 0 deletions vta/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ doc:

clean:
$(RM) -rf build lib bin *~ */*~ */*/*~ */*/*/*~ */*.o */*/*.o */*/*/*.o
$(RM) -rf cat.jpg quantize_graph.json quantize_params.pkl synset.txt


-include build/*.d
Expand Down
17 changes: 12 additions & 5 deletions vta/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,27 @@ VTA(versatile tensor accelerator) is an open-source deep learning accelerator st
It is not just an open-source hardware, but is an end to end solution that includes
the entire software stack on top of VTA open-source hardware.


The key features include:

- Generic, modular open-source hardware
- Streamlined workflow to deploy to FPGAs.
- Simulator support
- Driver and JIT runtime for both simulated backend and FPGA.
- Simulator support to protoype compilation passes on regular workstations.
- Driver and JIT runtime for both simulated and FPGA hardware backend.
- End to end TVM stack integration
- Direct optimization and deploy models from deep learning frameworks via TVM stack.
- Customized and extendible TVM compiler backend
- Flexible RPC support to ease the deployment, you can program it with python :)
- Customized and extendible TVM compiler backend.
- Flexible RPC support to ease the deployment, and program FPGAs with Python

VTA is part of our effort on [TVM Stack](http://www.tvmlang.org/).

VTA Installation
----------------
To get started with VTA, please follow the [Installation Guide](docs/how_to/install.md)

ResNet-18 Inference Example
---------------------------
To offload ResNet-18 inference, follow the [ResNet-18 Guide](examples/resnet18/pynq/README.md)

License
-------
© Contributors, 2018. Licensed under an [Apache-2.0](https://github.com/tmoreau89/vta/blob/master/LICENSE) license.
73 changes: 0 additions & 73 deletions vta/apps/pynq_rpc/README.md

This file was deleted.

2 changes: 1 addition & 1 deletion vta/apps/pynq_rpc/start_rpc_server.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
export PYTHONPATH=${PYTHONPATH}:/home/xilinx/vta/nnvm/tvm/python:/home/xilinx/vta/python
export PYTHONPATH=${PYTHONPATH}:/home/xilinx/vta/tvm/python:/home/xilinx/vta/python
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/opt/python3.6/lib/python3.6/site-packages/pynq/drivers/
python -m vta.exec.rpc_server
Loading

0 comments on commit 5c8177b

Please sign in to comment.