Open deep learning compiler stack for cpu, gpu and specialized accelerators
Перейти к файлу
Tianqi Chen 396c161ff4 Acknowledge related projects (#465)
* [CODEGEN] Redo CodegenLLVM.

* Add remarks about origin of the pass

Properly acknowledge related projects

* Fix and expression
2017-09-20 12:14:50 -07:00
HalideIR@f3eb854595 [DOC] Release note (#340) 2017-08-17 11:42:14 -07:00
apps [RUNTIME] Enable extension type to PackedFunc. (#447) 2017-09-11 17:29:18 -07:00
cmake use auto source_group (#146) 2017-05-18 09:17:47 -07:00
dlpack@9422e98f3f [submodule] update dlpack (#403) 2017-08-31 08:58:23 -07:00
dmlc-core@a384fb9ed0 [SUBMODULE] upgrade dmlc-core (#461) 2017-09-18 10:22:06 -07:00
docs [DOCS] Add prerequisites about zlib1g-dev (#446) 2017-09-11 10:59:49 -07:00
include/tvm [RPC] Include rpc session info into context (#458) 2017-09-17 19:05:55 -07:00
jvm [tvm4j] Java runtime README (#391) 2017-08-27 10:09:43 -07:00
make [RUNTIME] v2: runtime support for rocm (#386) 2017-08-25 17:00:29 -07:00
python [RUNTIME][PYTHON] More compatibility in ndarray (#463) 2017-09-18 23:11:19 -07:00
src Acknowledge related projects (#465) 2017-09-20 12:14:50 -07:00
tests [PASS] Fix intrinsic lowering with fma and other intrin (#457) 2017-09-17 15:54:36 -07:00
topi Use ewise schedule for broadcasting (#460) 2017-09-17 23:32:05 -07:00
tutorials [DOCS] Fix markdown syntax error (#430) 2017-09-07 09:03:43 -07:00
verilog [CONTRIB/BLAS] Add CBLAS Example to contrib (#120) 2017-05-05 10:55:34 -07:00
web [SCHEDULE][RUNIME] Introduce pragma for additional extension hint, threadpool runtime. (#299) 2017-08-05 15:37:22 -07:00
.gitignore added vim temporary files to gitignore (#453) 2017-09-13 20:29:54 -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] Improve build instruction with llvm. (#422) 2017-09-04 19:36:46 -07:00
CONTRIBUTORS.md [TUTORIAL] Optimize gemm on CPU add! (#270) 2017-07-25 22:58:41 -07:00
Jenkinsfile [TEST] Jenkinsfile (#389) 2017-08-26 12:08:59 -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 disable fopen64 in dmlc-core (#443) 2017-09-10 11:32:47 -07:00
NEWS.md [DOC] Release note (#340) 2017-08-17 11:42:14 -07:00
README.md Acknowledge related projects (#465) 2017-09-20 12:14:50 -07:00

README.md

TVM: Tensor IR Stack for Deep Learning Systems

GitHub license Build Status

Installation | Documentation | Tutorials | Operator Inventory | FAQ | Contributors | Release Notes

TVM is a Tensor intermediate representation(IR) 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 our announcement for more details.

License

© Contributors, 2017. 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.

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. HalideIR is derived from Halide. We also learns from Halide when implementing the lowering pipeline in TVM.
  • Loopy: use of integer set analysis and its loop transformation primitives.
  • Theano: the design inspiration of symbolic scan operator for recurrence.