Open deep learning compiler stack for cpu, gpu and specialized accelerators
Перейти к файлу
Luis Vega 32f74f31c8 [VTA] [Hardware] Chisel implementation (#3258) 2019-06-05 10:17:11 -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 [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 [Relay/TOPI][Op] Add TopK operator (#3256) 2019-06-04 16:29:56 -07:00
golang [GOLANG] Some fixes for golang latest version compiler. #3119 (#3182) 2019-05-13 10:03:32 -07:00
include/tvm [Relay/TOPI][Op] Add TopK operator (#3256) 2019-06-04 16:29:56 -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 Improve error message for custom tflite operators (#3284) 2019-06-05 09:29:43 -07:00
rust [RUST] Rust DSO module (#2976) 2019-05-28 15:20:18 -07:00
src [Relay][VM] Fix code generation for packed functions + tuples (#3287) 2019-06-05 09:28:52 -07:00
tests [Relay][VM] Fix code generation for packed functions + tuples (#3287) 2019-06-05 09:28:52 -07:00
topi [IR] Try to improve nms and get_valid_count (#3282) 2019-06-05 11:32:31 +08:00
tutorials Update tflite tutorial to use TFLite r1.13 schema (#3271) 2019-06-01 11:16:16 -07:00
vta [VTA] [Hardware] Chisel implementation (#3258) 2019-06-05 10:17:11 -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.