Open deep learning compiler stack for cpu, gpu and specialized accelerators
Перейти к файлу
Marcus Shawcroft 911c3a36ed [TEST] Remove script that references previously removed content. (#2481) 2019-01-24 14:20:08 -05:00
.github
3rdparty [PASS]Treat Halide call_type as pure expression (#2404) 2019-01-09 10:51:30 -08:00
apps Bundled interpreter demo (#2297) 2018-12-18 18:00:42 -08:00
cmake [Relay][Parser] Improve Relay parser and pretty printing, including CMAKE (#2377) 2019-01-17 08:57:16 -08:00
conda
docker Add gluoncv installation (#2464) 2019-01-19 10:02:57 -08:00
docs [DOCS][COMMUNITY] Committer guide and tips (#2468) 2019-01-24 13:53:53 -05:00
golang [RUNTIME][GOLANG] TVM runtime for golang v0.1 (#1470) 2018-12-09 00:46:00 -05:00
include/tvm [Relay][Parser] Improve Relay parser and pretty printing, including CMAKE (#2377) 2019-01-17 08:57:16 -08:00
jvm
nnvm Fix typo (#2467) 2019-01-19 11:41:30 -08:00
python [AUTOTVM] typo (#2478) 2019-01-24 09:36:36 -08:00
rust Update rust contributors (#2500) 2019-01-24 10:50:18 -08:00
src check in (#2484) 2019-01-24 14:05:24 -05:00
tests [TEST] Remove script that references previously removed content. (#2481) 2019-01-24 14:20:08 -05:00
topi [X86][TOPI] Add AutoTVM template for dense (#2392) 2019-01-13 22:43:34 -08:00
tutorials fix deploy_model_on_rasp.py spell error. (#2491) 2019-01-23 10:52:29 -08:00
verilog
vta [RELAY][EXPR] Make const numpy consistent (#2349) 2018-12-28 20:11:56 -08:00
web Fix Web Build after CMake transition. (#2407) 2019-01-09 12:19:53 -08:00
.clang-format add .clang-format (#2395) 2019-01-08 13:08:13 -08:00
.gitignore [Relay][RFC] Relay IR Text Format (#1781) 2018-12-02 10:35:01 -08:00
.gitmodules
.travis.yml
CMakeLists.txt Fix broadcast add and subtract grad (#2465) 2019-01-19 10:05:25 -08:00
CONTRIBUTORS.md [COMMUNITY] @junrushao1994 -> Reviewer (#2463) 2019-01-18 19:24:47 -08:00
Jenkinsfile [TEST] Remove script that references previously removed content. (#2481) 2019-01-24 14:20:08 -05:00
LICENSE
Makefile Fix Web Build after CMake transition. (#2407) 2019-01-09 12:19:53 -08:00
NEWS.md
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.