Open deep learning compiler stack for cpu, gpu and specialized accelerators
Перейти к файлу
Marcus Shawcroft e3d2928040 [DOC] minor gramatical improvements to tensor_expr_get_started (#3330) 2019-06-10 09:24:22 -07:00
.github Add link to the reviewers 2018-10-22 23:08:32 -07:00
3rdparty Make the behavior of data nullptr check of pooling layer same as others. (#3322) 2019-06-08 09:17:29 -07:00
apps Fixed a typo (#3218) 2019-05-24 17:48:58 -07:00
cmake [VTA] [Hardware] Chisel implementation (#3258) 2019-06-05 10:17:11 -07:00
conda More fixes and tweaks to the cuda conda packages (#3281) 2019-06-05 10:14:12 -07:00
docker Bump ONNX version (#3286) 2019-06-04 08:42:46 -07:00
docs [DOC] minor language use improvements (#3317) 2019-06-07 12:51:14 -07:00
golang [GOLANG] Some fixes for golang latest version compiler. #3119 (#3182) 2019-05-13 10:03:32 -07:00
include/tvm Improve non_max_suppression and get_valid_counts for CPU (#3305) 2019-06-09 22:34:56 +02:00
jvm fix java checkstyle version (#2998) 2019-04-09 22:12:50 -07:00
nnvm Fix some typos in api docs (#3309) 2019-06-07 00:01:01 -07:00
python Add MUL operator to relay tflite frontend (#3304) 2019-06-09 16:24:11 -07:00
rust [Rust] Static syslib (#3274) 2019-06-08 20:56:58 -07:00
src Improve non_max_suppression and get_valid_counts for CPU (#3305) 2019-06-09 22:34:56 +02:00
tests Add MUL operator to relay tflite frontend (#3304) 2019-06-09 16:24:11 -07:00
topi Improve non_max_suppression and get_valid_counts for CPU (#3305) 2019-06-09 22:34:56 +02:00
tutorials [DOC] minor gramatical improvements to tensor_expr_get_started (#3330) 2019-06-10 09:24:22 -07:00
vta add another default location to verilator (#3324) 2019-06-09 16:41:22 -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 More fixes and tweaks to the cuda conda packages (#3281) 2019-06-05 10:14:12 -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 Enable uTVM in Jenkinsfile (#3269) 2019-05-31 12:21:36 -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.