Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tic
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wenyuanbo
tic
Commits
012697a3
Commit
012697a3
authored
Apr 14, 2018
by
Tianqi Chen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix jenkins (#31)
parent
395f4c36
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
42 additions
and
4 deletions
+42
-4
vta/Jenkinsfile
+2
-2
vta/README.md
+1
-1
vta/docs/api/python/index.rst
+28
-0
vta/python/vta/__init__.py
+6
-1
vta/tests/scripts/task_python_docs.sh
+5
-0
No files found.
vta/Jenkinsfile
View file @
012697a3
...
...
@@ -4,8 +4,8 @@
// See documents at https://jenkins.io/doc/book/pipeline/jenkinsfile/
// nnvm libraries
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
=
"lib/libvta.so, lib/libvta.so.json"
vta_lib
+=
", nnvm/tvm/lib/libtvm.so, nnvm/tvm/lib/libt
vm_t
opi.so, nnvm/lib/libnnvm_compiler.so"
// command to start a docker container
...
...
vta/README.md
View file @
012697a3
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)
VTA(versatile tensor accelerator) is an open-source deep learning accelerator stack.
...
...
vta/docs/api/python/index.rst
0 → 100644
View file @
012697a3
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
vta/python/vta/__init__.py
View file @
012697a3
"""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
__version__
=
"0.1.0"
...
...
vta/tests/scripts/task_python_docs.sh
View file @
012697a3
#!/bin/bash
cd
nnvm/tvm
make cython
make cython3
cd
../../
mkdir
-p
docs/_build/html
# C++ doc
make doc
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment