Open deep learning compiler stack for cpu, gpu and specialized accelerators
Перейти к файлу
Tianqi Chen 28f1a9fd47
Add link to the reviewers
2018-10-22 23:08:32 -07:00
.github Add link to the reviewers 2018-10-22 23:08:32 -07:00
3rdparty Update submodule dmlc-core (#1920) 2018-10-18 08:52:04 -07:00
apps [TOPI] Specify non-zero absolute tolerance in tests (#1925) 2018-10-20 22:06:45 -07:00
cmake [VTA] pynq v2.1 -> v2.3 (#1945) 2018-10-20 21:55:12 -07:00
conda [VERSION] Update to 0.5.dev (#1623) 2018-08-20 16:28:28 -07:00
docker Update SGX example (#1933) 2018-10-19 09:34:18 -07:00
docs [Relay][Op]BroadcastToLike CollapseSumLike (#1886) 2018-10-22 09:31:59 -07:00
include/tvm [RELAY] IR builder stablize refactor, clean pass (#1934) 2018-10-19 21:56:09 -07:00
jvm Vulkan TVM Android Support (#1571) 2018-08-09 18:41:49 -07:00
nnvm [Frontend][MXNet] ones zeros ones_like zeros_like ops support (#1814) 2018-10-20 22:08:11 -07:00
python [AUTOTVM] Fix measurement for CPU (#1956) 2018-10-22 21:55:31 -07:00
rust Update SGX example (#1933) 2018-10-19 09:34:18 -07:00
src [Relay] Fix format (#1957) 2018-10-22 22:33:37 -07:00
tests [Relay][Op]BroadcastToLike CollapseSumLike (#1886) 2018-10-22 09:31:59 -07:00
topi [TOPI] Specify non-zero absolute tolerance in tests (#1925) 2018-10-20 22:06:45 -07:00
tutorials [TOPI] Specify non-zero absolute tolerance in tests (#1925) 2018-10-20 22:06:45 -07:00
verilog Remove leading "./" from include paths (#1640) 2018-08-22 22:11:12 -07:00
vta [TOPI] Specify non-zero absolute tolerance in tests (#1925) 2018-10-20 22:06:45 -07:00
web [VERSION] Update to 0.5.dev (#1623) 2018-08-20 16:28:28 -07:00
.gitignore Update SGX example (#1933) 2018-10-19 09:34:18 -07: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 fix build issue for MSVC 2017 15.8.0 and above (#1928) 2018-10-18 11:51:03 -07:00
CONTRIBUTORS.md adding Liangfu Chen as reviewer (#1926) 2018-10-18 13:25:07 -07:00
Jenkinsfile Update Jenkinsfile (#1893) 2018-10-17 15:34:58 -07: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
README.md Update ci to new location (#1552) 2018-08-03 12:08:53 -07: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 arithematic 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.