Open deep learning compiler stack for cpu, gpu and specialized accelerators
Перейти к файлу
Animesh Jain 1bc8385304 [QNN] Requantize - Optimize lowering for some corner cases. (#3864) 2019-09-01 22:58:38 -04:00
.github Add link to the reviewers 2018-10-22 23:08:32 -07:00
3rdparty Update dmlc-core to the latest commit (#3716) 2019-08-06 14:58:24 -07:00
apps [VTA] Refactor to increase platform coverage (Ultra96 etc.) (#3496) 2019-07-28 18:41:10 -07:00
cmake [VTA] Infinite recursive device_api.ext_dev call fix. (#3843) 2019-08-29 14:26:39 -07:00
conda Improvements in conda recipe (#3791) 2019-08-29 11:14:04 +08:00
docker Fixed repo change for llvm-9 to resolve missing dependency issue when building images with llvm enabled (#3826) 2019-08-23 21:06:54 +08:00
docs update docs for installation for CUDA (#3832) 2019-08-26 11:41:26 -07:00
golang [GOLANG] Some fixes for golang latest version compiler. #3119 (#3182) 2019-05-13 10:03:32 -07:00
include/tvm [Relay][Any] Add shape func for dynamic shape (#3606) 2019-08-31 18:50:22 -07:00
jvm to fix issue Target llvm is not enabled[followup] (#3404) 2019-06-20 09:55:46 -07:00
nnvm [NNVM][FRONTEND][ONNX] Fix PReLU conversion (#3813) 2019-08-31 17:52:42 -07:00
python Implementation of tile for TFLite (#3814) 2019-08-31 18:56:39 -07:00
rust [Rust] Static syslib (#3274) 2019-06-08 20:56:58 -07:00
src [QNN] Requantize - Optimize lowering for some corner cases. (#3864) 2019-09-01 22:58:38 -04:00
tests [QNN] Requantize - Optimize lowering for some corner cases. (#3864) 2019-09-01 22:58:38 -04:00
topi [Relay][Any] Add shape func for dynamic shape (#3606) 2019-08-31 18:50:22 -07:00
tutorials [CoreML] Solve CoreML frontend issue of image scaler and padding so that Mobilenet mlmodel can work correctly. (#3800) 2019-08-19 14:05:41 +08:00
vta [VTA][TSIM] add virtual memory support to tsim example (#3868) 2019-08-31 17:49:17 -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] Roundtrip part of pretty printer and parser (#3460) 2019-07-08 17:30:43 -07:00
.gitmodules [DEP] Remove HalideIR from submodule (#3535) 2019-07-11 17:10:57 -07:00
CMakeLists.txt [Relay][VM]VM Profiler (#3727) 2019-08-20 21:28:05 -07:00
CONTRIBUTORS.md [Relay][Frontend][TFLite] transpose implementation for tflite.py (#3705) 2019-08-19 10:20:38 -07:00
Jenkinsfile [Relay][VM]VM Profiler (#3727) 2019-08-20 21:28:05 -07:00
LICENSE
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
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.