Open deep learning compiler stack for cpu, gpu and specialized accelerators
Перейти к файлу
Tianqi Chen 758cb7519c [MAINTAINER] add masahi as reviewer (#1277) 2018-06-13 17:21:16 -07:00
.github update template (#1233) 2018-06-05 14:55:55 -07:00
HalideIR@a3698398fa Update halideIR, add more device query for shared memory (#1087) 2018-04-07 20:56:00 -07:00
apps fix missing std::to_string during Android build, android rpc test script (#1279) 2018-06-13 17:20:10 -07:00
cmake [BUILD] Enable path option for ROCM, CUDA, Vulkan, simplify optional build (#1270) 2018-06-12 22:36:55 -07:00
dlpack@10892ac964 [DLPack] Upgrade dlpack to 0.2 (#609) 2017-11-03 15:55:17 +08:00
dmlc-core@9b3f9753ae [IO] Support cross-endian 2018-05-30 22:27:44 -07:00
docs Update code_review.rst 2018-06-11 22:10:26 -07:00
include/tvm [INTRIN] Add support for floor and ceil (#1267) 2018-06-12 13:31:16 -07:00
jvm [BUILD] Switch to CMake only Infra (#1254) 2018-06-10 22:00:33 -07:00
nnvm [BUILD] Add clang to build matrix, -Werror (#1273) 2018-06-13 10:52:49 -07:00
python Add silent mode to rpc server and rpc tracker (#1268) 2018-06-12 19:18:15 -07:00
src fix copro_sync.cc errors of ctx (#1274) 2018-06-13 10:53:04 -07:00
tests fix copro_sync.cc errors of ctx (#1274) 2018-06-13 10:53:04 -07:00
topi [BUILD] Add clang to build matrix, -Werror (#1273) 2018-06-13 10:52:49 -07:00
tutorials [NNVM][FRONTEND] Tensorflow frontend support (#1188) 2018-06-12 22:37:35 -07:00
verilog [CONTRIB/BLAS] Add CBLAS Example to contrib (#120) 2017-05-05 10:55:34 -07:00
web [RPC] Refactor, introduce tracker (#1080) 2018-04-04 20:40:41 -07:00
.gitignore [BUILD] Switch to CMake only Infra (#1254) 2018-06-10 22:00:33 -07:00
.gitmodules [SUBMODULE] switch to https (#341) 2017-08-17 11:51:31 -07:00
.travis.yml Remove linux from travis (#156) 2017-05-22 19:47:12 -07:00
CMakeLists.txt [BUILD] Add clang to build matrix, -Werror (#1273) 2018-06-13 10:52:49 -07:00
CODEOWNERS [MAINTAINER] Add Nick Hynes to CodeOwner of SGX (#1128) 2018-04-21 14:11:16 -07:00
CONTRIBUTORS.md [MAINTAINER] add masahi as reviewer (#1277) 2018-06-13 17:21:16 -07:00
Jenkinsfile [BUILD] Add clang to build matrix, -Werror (#1273) 2018-06-13 10:52:49 -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 [BUILD] Upgrade build system to default python3 (#1260) 2018-06-11 16:36:52 -07:00
NEWS.md Release 0.3 (#1171) 2018-05-20 21:18:26 -07:00
README.md [BUILD] Add clang to build matrix, -Werror (#1273) 2018-06-13 10:52:49 -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.