Open deep learning compiler stack for cpu, gpu and specialized accelerators
Перейти к файлу
Chang Lan 1ba443a4fe Use unsafe_get in nnvm (#2247) 2018-12-06 15:33:00 -05:00
.github Add link to the reviewers 2018-10-22 23:08:32 -07:00
3rdparty Use unsafe_get in nnvm (#2247) 2018-12-06 15:33:00 -05:00
apps [APPS] add an external dll call example (#2156) 2018-11-22 10:32:00 -08:00
cmake [Relay][RFC] Relay IR Text Format (#1781) 2018-12-02 10:35:01 -08:00
conda [VERSION] Update to 0.5.dev (#1623) 2018-08-20 16:28:28 -07:00
docker [Relay][RFC] Relay IR Text Format (#1781) 2018-12-02 10:35:01 -08:00
docs [DOC][Relay]: Add API docs for Relay. (#1750) 2018-12-01 22:27:49 -08:00
include/tvm [typo] sin ==> in (#2238) 2018-12-05 22:41:09 -05:00
jvm Vulkan TVM Android Support (#1571) 2018-08-09 18:41:49 -07:00
nnvm Use unsafe_get in nnvm (#2247) 2018-12-06 15:33:00 -05:00
python [typo] fucn => func (#2240) 2018-12-06 11:16:35 -05:00
rust [typo] fucn => func (#2240) 2018-12-06 11:16:35 -05:00
src [typo] fucn => func (#2240) 2018-12-06 11:16:35 -05:00
tests [contrib][nnpack] remove training-optimized ops (#2224) 2018-12-05 21:28:18 -05:00
topi Port from_nnvm to NNVM as to_relay (#2144) 2018-12-04 15:54:01 -05:00
tutorials Fix misprint (#2243) 2018-12-06 09:30:30 -05:00
verilog Remove leading "./" from include paths (#1640) 2018-08-22 22:11:12 -07:00
vta [VTA] Improved RPC for VTA (#2043) 2018-11-11 19:24:48 -08:00
web [VERSION] Update to 0.5.dev (#1623) 2018-08-20 16:28:28 -07:00
.gitignore [Relay][RFC] Relay IR Text Format (#1781) 2018-12-02 10:35:01 -08:00
.gitmodules [RUNTIME] Add fp16/fp32 conversion functions (#1766) 2018-09-24 20:13:34 -07:00
.travis.yml Remove linux from travis (#156) 2017-05-22 19:47:12 -07:00
CMakeLists.txt [Relay][RFC] Relay IR Text Format (#1781) 2018-12-02 10:35:01 -08:00
CONTRIBUTORS.md [COMMUNITY] @grwlf -> Reviewer (#2190) 2018-11-29 10:01:49 -08:00
Jenkinsfile [Relay][RFC] Relay IR Text Format (#1781) 2018-12-02 10:35:01 -08:00
LICENSE [DOC/LICENSE] Make doc and license consistent, opensource repo when we get approval (#134) 2017-05-09 20:36:23 -07:00
Makefile Add javadoc build into Jenkins workflow (#1909) 2018-10-16 18:48:28 -07:00
NEWS.md [VERSION] Update to 0.5.dev (#1623) 2018-08-20 16:28:28 -07:00
NOTICE NOTICE (#2203) 2018-11-29 23:43:41 -08:00
README.md Update README.md typo (#2132) 2018-11-19 09:00:55 -08:00

README.md

Open Deep Learning Compiler Stack

GitHub license Build Status

Documentation | Contributors | Community | Release Notes

TVM is a compiler stack for deep learning systems. It is designed to close the gap between the productivity-focused deep learning frameworks, and the performance- and efficiency-focused hardware backends. TVM works with deep learning frameworks to provide end to end compilation to different backends. Checkout the tvm stack homepage for more information.

License

© Contributors Licensed under an Apache-2.0 license.

Contribute to TVM

TVM adopts apache committer model, we aim to create an open source project that is maintained and owned by the community. Checkout the Contributor Guide

Acknowledgement

We learnt a lot from the following projects when building TVM.

  • Halide: TVM uses HalideIR as data structure for arithmetic simplification and low level lowering. We also learnt and adapted some part of lowering pipeline from Halide.
  • Loopy: use of integer set analysis and its loop transformation primitives.
  • Theano: the design inspiration of symbolic scan operator for recurrence.