Commit 012697a3 by Tianqi Chen

fix jenkins (#31)

parent 395f4c36
...@@ -4,8 +4,8 @@ ...@@ -4,8 +4,8 @@
// See documents at https://jenkins.io/doc/book/pipeline/jenkinsfile/ // See documents at https://jenkins.io/doc/book/pipeline/jenkinsfile/
// nnvm libraries // nnvm libraries
vta_lib += "lib/libvta.so, lib/libvta.so.json" vta_lib = "lib/libvta.so, lib/libvta.so.json"
vta_lib += ", nnvm/tvm/lib/libtvm.so, nnvm/tvm/lib/libtopi.so, nnvm/lib/libnnvm_compiler.so" vta_lib += ", nnvm/tvm/lib/libtvm.so, nnvm/tvm/lib/libtvm_topi.so, nnvm/lib/libnnvm_compiler.so"
// command to start a docker container // command to start a docker container
......
VTA: Open, Modular, Deep Learning Accelerator Stack VTA: Open, Modular, Deep Learning Accelerator Stack
=================================================== ===================================================
[![Build Status](http://mode-gpu.cs.washington.edu:8080/buildStatus/icon?job=uwsaml/vta/master)](http://mode-gpu.cs.washington.edu:8080/job/uwsaml/job/vta/job/master/)
[![GitHub license](http://dmlc.github.io/img/apache2.svg)](./LICENSE) [![GitHub license](http://dmlc.github.io/img/apache2.svg)](./LICENSE)
VTA(versatile tensor accelerator) is an open-source deep learning accelerator stack. VTA(versatile tensor accelerator) is an open-source deep learning accelerator stack.
......
Python API
==========
This document contains the python API to VTA compiler toolchain.
.. automodule:: vta
Hardware Information
--------------------
.. autofunction:: vta.Environment
.. autofunction:: vta.get_env
RPC Utilities
-------------
.. autofunction:: vta.reconfig_runtime
.. autofunction:: vta.program_fpga
Compiler API
------------
We program VTA using TVM, so the compiler API in vta package
is only a thin wrapper to provide VTA specific extensions.
.. autofunction:: vta.build_config
.. autofunction:: vta.build
.. autofunction:: vta.lower
"""TVM-based VTA Compiler Toolchain""" """VTA Package is a TVM backend extension to support VTA hardwares
Besides the compiler toolchain.
It also include utility functions to
configure the hardware Environment and access remote through RPC
"""
from __future__ import absolute_import as _abs from __future__ import absolute_import as _abs
__version__ = "0.1.0" __version__ = "0.1.0"
......
#!/bin/bash #!/bin/bash
cd nnvm/tvm
make cython
make cython3
cd ../../
mkdir -p docs/_build/html mkdir -p docs/_build/html
# C++ doc # C++ doc
make doc make doc
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment