Open deep learning compiler stack for cpu, gpu and specialized accelerators
Перейти к файлу
Lianmin Zheng 32076df815 [AUTOTVM] TOPI integration for ARM CPU (#1487) 2018-08-02 08:59:25 -07:00
.github [DOCS] Improve review guide, improve cmake llvm build (#1295) 2018-06-17 12:07:11 -07:00
HalideIR@a0b9563f45 update halideIR (#1515) 2018-07-31 10:37:03 -07:00
apps [AUTOTVM] TOPI integration for ARM CPU (#1487) 2018-08-02 08:59:25 -07:00
cmake Add initial support for Intel FPGA SDK for OpenCL (AOCL) (#1474) 2018-07-31 09:58:59 -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@e864aa6757 [BUILD] Fix reflection build for gcc-8 (#1304) 2018-06-20 14:10:00 -07:00
docker Revert "update dependency (#1495)" (#1499) 2018-07-26 16:56:41 -07:00
docs [AUTOTVM] TOPI integration for ARM CPU (#1487) 2018-08-02 08:59:25 -07:00
include/tvm Add initial support for Intel FPGA SDK for OpenCL (AOCL) (#1474) 2018-07-31 09:58:59 -07:00
jvm [tvm4j] support kNDArrayContainer (#1510) 2018-07-30 12:58:30 -07:00
nnvm [AUTOTVM] TOPI integration for ARM CPU (#1487) 2018-08-02 08:59:25 -07:00
python [AUTOTVM] TOPI integration for ARM CPU (#1487) 2018-08-02 08:59:25 -07:00
src [AUTOTVM] TOPI integration for ARM CPU (#1487) 2018-08-02 08:59:25 -07:00
tests [AUTOTVM] TOPI integration for ARM CPU (#1487) 2018-08-02 08:59:25 -07:00
topi [AUTOTVM] TOPI integration for ARM CPU (#1487) 2018-08-02 08:59:25 -07:00
tutorials [AUTOTVM] TOPI integration for ARM CPU (#1487) 2018-08-02 08:59:25 -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 [RPC] graduate tvm.contrib.rpc -> tvm.rpc (#1410) 2018-07-09 15:23:41 -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 [BUILD] warning fix: new does not have an alignment parameter (#1478) 2018-07-27 08:58:43 -07:00
CONTRIBUTORS.md [TEAM] yzhliu -> committer (#1509) 2018-07-30 12:57:55 -07:00
Jenkinsfile [CI] Switch to use prebuilt docker instead of build from scratch (#1442) 2018-07-16 20:02:54 -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 README.md 2018-07-16 21:08:20 -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.