Open deep learning compiler stack for cpu, gpu and specialized accelerators
Перейти к файлу
Lianmin Zheng 1c66012ac9 fix import (#1621) 2018-08-19 19:29:35 -07:00
.github [DOCS] Improve review guide, improve cmake llvm build (#1295) 2018-06-17 12:07:11 -07:00
HalideIR@a0b9563f45 [DLPACK] Enable cython support (#1589) 2018-08-11 15:31:15 -07:00
apps add -mattr=+neon for all arm cpu target (#1612) 2018-08-16 16:37:03 -07:00
cmake [RUNTIME] Refactor to enable stackvm in runtime. (#1588) 2018-08-11 09:15:05 -07:00
conda Fix conda 2 (#1456) 2018-07-19 15:04:39 -07:00
dlpack@10892ac964 [DLPack] Upgrade dlpack to 0.2 (#609) 2017-11-03 15:55:17 +08:00
dmlc-core@4f0564ec76 update dmlc-core for security reason (#1584) 2018-08-10 15:01:55 -07:00
docker adds antlr4 to python3 package list (#1560) 2018-08-05 12:57:08 -07:00
docs [NNVM][DOC] Update NNVM symbol documentation to latest. Ref. 1591 (#1599) 2018-08-14 08:58:34 -07:00
include/tvm [RUNTIME] Enable return NDArray in RPC (#1610) 2018-08-16 14:05:08 -07:00
jvm Vulkan TVM Android Support (#1571) 2018-08-09 18:41:49 -07:00
nnvm fix import (#1621) 2018-08-19 19:29:35 -07:00
python add -mattr=+neon for all arm cpu target (#1612) 2018-08-16 16:37:03 -07:00
src #1592 [PASS] Fix missing mem CHECK in storage_rewrite (#1616) 2018-08-18 11:18:29 -07:00
tests #1592 [PASS] Fix missing mem CHECK in storage_rewrite (#1616) 2018-08-18 11:18:29 -07:00
topi fix output_shape in conv2d_nchw (#1613) 2018-08-16 19:19:43 -07:00
tutorials add -mattr=+neon for all arm cpu target (#1612) 2018-08-16 16:37:03 -07:00
verilog [CONTRIB/BLAS] Add CBLAS Example to contrib (#120) 2017-05-05 10:55:34 -07:00
vta [AUTOTVM] TOPI integration for ARM CPU (#1487) 2018-08-02 08:59:25 -07:00
web Vulkan TVM Android Support (#1571) 2018-08-09 18:41:49 -07:00
.gitignore [AUTOTVM] TOPI integration for ARM CPU (#1487) 2018-08-02 08:59:25 -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 [RUNTIME] Refactor to enable stackvm in runtime. (#1588) 2018-08-11 09:15:05 -07:00
CONTRIBUTORS.md [TEAM] New reviewer: kevinthesun (#1606) 2018-08-15 23:21:05 -07:00
Jenkinsfile [RUNTIME] Refactor to enable stackvm in runtime. (#1588) 2018-08-11 09:15: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 [tvm4j] fix java build (#1471) 2018-07-21 17:21:38 -07:00
NEWS.md Release 0.3 (#1171) 2018-05-20 21:18:26 -07:00
README.md Update ci to new location (#1552) 2018-08-03 12:08:53 -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.