Open deep learning compiler stack for cpu, gpu and specialized accelerators
Перейти к файлу
microsoft-github-policy-service[bot] 984dc1b111
Auto merge mandatory file pr
This pr is auto merged as it contains a mandatory file and is opened for more than 10 days.
2022-11-28 19:09:42 +00:00
.github Add link to the reviewers 2018-10-22 23:08:32 -07:00
3rdparty [VTA] de10-nano driver (#3394) 2019-09-05 09:52:10 -07:00
apps [VTA] Refactor to increase platform coverage (Ultra96 etc.) (#3496) 2019-07-28 18:41:10 -07:00
cmake [Fix] Fix blas cmake for mac os (#3898) 2019-09-08 05:34:32 +08:00
conda change docker install script (#3524) 2019-09-08 08:10:11 +08:00
docker change docker install script (#3524) 2019-09-08 08:10:11 +08:00
docs change docker install script (#3524) 2019-09-08 08:10:11 +08:00
golang [GOLANG] Some fixes for golang latest version compiler. #3119 (#3182) 2019-05-13 10:03:32 -07:00
include/tvm [Relay][Module] Refactor the way we interface between different modules of Relay. (#3906) 2019-09-11 20:39:56 -07:00
jvm to fix issue Target llvm is not enabled[followup] (#3404) 2019-06-20 09:55:46 -07:00
nnvm change docker install script (#3524) 2019-09-08 08:10:11 +08:00
python [Relay][Module] Refactor the way we interface between different modules of Relay. (#3906) 2019-09-11 20:39:56 -07:00
rust [Rust] Static syslib (#3274) 2019-06-08 20:56:58 -07:00
src [Relay][Module] Refactor the way we interface between different modules of Relay. (#3906) 2019-09-11 20:39:56 -07:00
tests [TFLite] Support depthwise convolution multiplier greater than 1 (#3922) 2019-09-10 21:09:25 -07:00
topi [Arm] parallel batch axis (#3931) 2019-09-11 11:10:47 -07:00
tutorials Add .hsaco save/load for ROCm target (#3852) 2019-09-07 12:41:35 +09:00
vta [VTA][Config] hotfix denano10 (#3918) 2019-09-09 10:31:31 -07:00
web fix js test load module example (#3556) 2019-07-16 21:55:15 -07:00
.clang-format add .clang-format (#2395) 2019-01-08 13:08:13 -08:00
.gitignore [Relay][Frontend][darknet] Solve tvm parsing darknet resnext failure bug (#3778) 2019-09-04 13:46:29 +08:00
.gitmodules [DEP] Remove HalideIR from submodule (#3535) 2019-07-11 17:10:57 -07:00
CMakeLists.txt Support LLVM trunk (#3907) 2019-09-08 02:43:29 +08:00
CONTRIBUTORS.md [Community] Add reviewer Balint Cristian (#3935) 2019-09-11 14:32:15 -07:00
Jenkinsfile [Relay][VM]VM Profiler (#3727) 2019-08-20 21:28:05 -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 Replace learnt with learned (#3684) 2019-08-01 08:31:09 -07:00
SECURITY.md Microsoft mandatory file 2022-07-25 20:34:48 +00:00
version.py Add dockerfiles for the conda package builds (#3344) 2019-07-02 09:23:14 -07:00

README.md

Open Deep Learning Compiler Stack

Documentation | Contributors | Community | Release Notes

Build Status Azure Pipeline

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 learned 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 learned 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.