onnxruntime-tvm/docs
Marcus Shawcroft 08890e4d8a [DOC] minor language use improvements (#3317) 2019-06-07 12:51:14 -07:00
..
_static [DOCS] Add logo and tracker to docs (#1064) 2018-03-28 16:35:17 -07:00
api/python [Relay/TOPI][Op] Add TopK operator (#3256) 2019-06-04 16:29:56 -07:00
contribute [DOC] Various documentation improvements (#3133) 2019-05-02 12:11:37 -04:00
deploy [HEADER] Add Header to Comply with ASF Release Policy (#2982) 2019-04-07 21:14:02 -07:00
dev [DOC] minor language use improvements (#3317) 2019-06-07 12:51:14 -07:00
frontend [HEADER] Add Header to Comply with ASF Release Policy (#2982) 2019-04-07 21:14:02 -07:00
install [Relay][Docs] Add parser dependency install instructions. (#3277) 2019-06-04 13:28:35 -07:00
langref [Relay/TOPI][Op] Add TopK operator (#3256) 2019-06-04 16:29:56 -07:00
vta [Bugfix][VTA] PkgConfig cause crash in PYNQ board due to link library (#3257) 2019-05-31 21:42:15 -05:00
.gitignore [DOC] Initial doc system (#88) 2017-04-15 12:37:43 -07:00
Doxyfile [HEADER] Add Header to Comply with ASF Release Policy (#2982) 2019-04-07 21:14:02 -07:00
Makefile [HEADER] Add Header to Comply with ASF Release Policy (#2982) 2019-04-07 21:14:02 -07:00
README.txt [BUILD][DOCS] Migrate VTA CI, test, build, docs 2018-07-11 21:54:39 -07:00
api_links.rst [HEADER] Add Header to Comply with ASF Release Policy (#2982) 2019-04-07 21:14:02 -07:00
conf.py [HEADER] Add Header to Comply with ASF Release Policy (#2982) 2019-04-07 21:14:02 -07:00
faq.md [HEADER] Add Header to Comply with ASF Release Policy (#2982) 2019-04-07 21:14:02 -07:00
genindex.rst [HEADER] Add Header to Comply with ASF Release Policy (#2982) 2019-04-07 21:14:02 -07:00
index.rst [HEADER] Add Header to Comply with ASF Release Policy (#2982) 2019-04-07 21:14:02 -07:00
nnvm_top.rst [HEADER] Add Header to Comply with ASF Release Policy (#2982) 2019-04-07 21:14:02 -07:00

README.txt

TVM Documentations
==================
This folder contains the source of TVM documents

- A hosted version of doc is at http://docs.tvm.ai
- pip install sphinx>=1.5.5 sphinx-gallery sphinx_rtd_theme matplotlib Image recommonmark Pillow
- Build tvm first in the root folder.
- To build locally, you need to enable USE_CUDA, USE_OPENCL, LLVM_CONFIG in config.mk and then type "make html" in this folder.

Only Execute Specified Tutorials
--------------------------------
The document build process will execute all the tutorials in the sphinx gallery.
This will cause failure in some cases when certain machines do not have necessary
environment. You can set ```TVM_TUTORIAL_EXEC_PATTERN``` to only execute
the path that matches the regular expression pattern.

For example, to only build tutorials under /vta/tutorials, run

```bash
TVM_TUTORIAL_EXEC_PATTERN=/vta/tutorials make html
```

To only build one specific file, do

```bash
# The slash \ is used to get . in regular expression
TVM_TUTORIAL_EXEC_PATTERN=file_name\.py make html
```