Open deep learning compiler stack for cpu, gpu and specialized accelerators
Перейти к файлу
Sergey Mironov cf9db7ea66 [NNVM] Add argmax and argmin operations from topi (#1462) 2018-07-25 12:08:39 -07:00
.github [DOCS] Improve review guide, improve cmake llvm build (#1295) 2018-06-17 12:07:11 -07:00
HalideIR@a5a80bdc82 [NODE][REFLECTION] Support NDArray as field (#1452) 2018-07-18 16:18:58 -07:00
apps Update Application.mk (#1483) 2018-07-24 16:41:54 -07:00
cmake [BUILD] Fix LLVM static/dynamic link issue (#1461) 2018-07-23 11:47:18 -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 Update VTA schedule (#1464) 2018-07-20 11:48:19 -07:00
docs [CODEGEN] Enable inline llvm asm code (#1486) 2018-07-25 09:30:23 -07:00
include/tvm [CODEGEN] Enable inline llvm asm code (#1486) 2018-07-25 09:30:23 -07:00
jvm [tvm4j] add GraphRuntime (#1472) 2018-07-24 14:45:18 -07:00
nnvm [NNVM] Add argmax and argmin operations from topi (#1462) 2018-07-25 12:08:39 -07:00
python [CODEGEN] Enable inline llvm asm code (#1486) 2018-07-25 09:30:23 -07:00
src [CODEGEN] Enable inline llvm asm code (#1486) 2018-07-25 09:30:23 -07:00
tests [CODEGEN] Enable inline llvm asm code (#1486) 2018-07-25 09:30:23 -07:00
topi [TOPI] Bitserial low-precision convolution (#1332) 2018-07-22 21:56:11 -07:00
tutorials [AUTOTVM] Misc bug fix (#1467) 2018-07-21 10:11:05 -07:00
verilog [CONTRIB/BLAS] Add CBLAS Example to contrib (#120) 2017-05-05 10:55:34 -07:00
vta timing closure fix for default VTA config (#1489) 2018-07-25 12:07:37 -07:00
web [RPC] graduate tvm.contrib.rpc -> tvm.rpc (#1410) 2018-07-09 15:23:41 -07:00
.gitignore [BUILD] Switch to CMake only Infra (#1254) 2018-06-10 22:00:33 -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 Fix conda package builds (#1445) 2018-07-17 13:45:08 -07:00
CONTRIBUTORS.md [TEAM] New reviewer: kazum (#1417) 2018-07-11 14:30:03 -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.