Open deep learning compiler stack for cpu, gpu and specialized accelerators
Перейти к файлу
hlu1 e5a2ef470c [Bugfix] Fix a memory leak in OpManager (#3263) 2019-05-30 21:11:25 -07:00
.github Add link to the reviewers 2018-10-22 23:08:32 -07:00
3rdparty Typo: Tensorflow --> TensorFlow (#3249) 2019-05-28 13:35:25 -07:00
apps Fixed a typo (#3218) 2019-05-24 17:48:58 -07:00
cmake [Contrib] cblas batch_matmul (#3210) 2019-05-21 16:05:28 -07:00
conda [HEADER] Add Header to Comply with ASF Release Policy (#2982) 2019-04-07 21:14:02 -07:00
docker [CI] Add file type check (#3116) 2019-04-28 12:04:19 -07:00
docs [Doc][Relay] Add VM doc (#3188) 2019-05-27 15:24:54 -07:00
golang [GOLANG] Some fixes for golang latest version compiler. #3119 (#3182) 2019-05-13 10:03:32 -07:00
include/tvm [C++] Cleanup transform API nits (#3253) 2019-05-28 18:12:17 -07:00
jvm fix java checkstyle version (#2998) 2019-04-09 22:12:50 -07:00
nnvm [TOPI] Fix resize nearest with fractional scaling (#3244) 2019-05-28 15:20:58 -07:00
python [AutoTVM]Core functionality for Graph tuner (#2184) 2019-05-29 16:36:05 -07:00
rust [RUST] Rust DSO module (#2976) 2019-05-28 15:20:18 -07:00
src [Bugfix] Fix a memory leak in OpManager (#3263) 2019-05-30 21:11:25 -07:00
tests [Relay] Handle float16 constants & fix BatchNorm (#3260) 2019-05-31 10:12:56 +08:00
topi [AutoTVM]Core functionality for Graph tuner (#2184) 2019-05-29 16:36:05 -07:00
tutorials [AutoTVM]Core functionality for Graph tuner (#2184) 2019-05-29 16:36:05 -07:00
vta [BugFix][VTA] Fix vta_conv2d crash issue after change vta_config.json configuration. (#3213) 2019-05-29 10:32:47 -07:00
web [REFACTOR] Use more TypedPackedFuncs (#2981) 2019-04-10 14:28:25 -07:00
.clang-format add .clang-format (#2395) 2019-01-08 13:08:13 -08:00
.gitignore Update .gitignore (#3199) 2019-05-16 11:54:43 -07:00
.gitmodules [Relay] Add generic & informative Relay error reporting (#2408) 2019-01-25 10:17:31 -08:00
CMakeLists.txt [Datatypes] Custom datatypes (#2900) 2019-05-15 13:34:30 -07:00
CONTRIBUTORS.md [Team] Eddie -> PMC (#3220) 2019-05-21 22:28:48 -07:00
Jenkinsfile [CI] Always run cpptest during build to ensure library correctness (#3147) 2019-05-08 08:14:08 -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 [HEADER] Add Header to Comply with ASF Release Policy (#2982) 2019-04-07 21:14:02 -07:00
NEWS.md [HEADER] Add Header to Comply with ASF Release Policy (#2982) 2019-04-07 21:14:02 -07:00
NOTICE NOTICE (#2203) 2018-11-29 23:43:41 -08:00
README.md [HEADER] Add Header to Comply with ASF Release Policy (#2982) 2019-04-07 21:14:02 -07:00
version.py [HEADER] Add Header to Comply with ASF Release Policy (#2982) 2019-04-07 21:14:02 -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 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.