Open deep learning compiler stack for cpu, gpu and specialized accelerators
Перейти к файлу
Hiroyuki Makino b3b3d28a18 [Relay][Frontend] Caffe2 Support (#2507)
* [Relay][Frontend] Add Caffe2 Support

* [Relay][Frontend] Add Caffe2 Support (fix unsed import)

* [Relay][Frontend] Add Caffe2 Support (fix caffe2 model import)

* [Relay][Frontend] Add Caffe2 Support (fix model install and reflect code reviews)

* [Relay][Frontend] Add Caffe2 Support (fix caffe2 model import)

* [Relay][Frontend] Add Caffe2 Support (fix caffe2 model import)

* [Relay][Frontend] Add Caffe2 Support (fix caffe2 model import)

* [Relay][Frontend] Add Caffe2 Support (fix caffe2 frontend import)

* [Relay][Frontend] Add Caffe2 Support (rename function name in test_forward)

* [Relay][Frontend] Add Caffe2 Support (fix caffe2 model import)

* [Relay][Frontend] Add Caffe2 Support (fix caffe2 model import)

* [Doc] Caffe2 frontend tutorial

* [Doc] Caffe2 frontend tutorial

* [Doc] Caffe2 frontend tutorial

* [Relay][Frontend] Add Caffe2 Support (remove unsed file)
2019-02-01 22:31:20 -08:00
.github Add link to the reviewers 2018-10-22 23:08:32 -07:00
3rdparty Optimize Linux shared library modules (*.so files) (#2445) 2019-01-28 21:14:18 -08:00
apps Bundled interpreter demo (#2297) 2018-12-18 18:00:42 -08:00
cmake [Relay][Parser] Improve Relay parser and pretty printing, including CMAKE (#2377) 2019-01-17 08:57:16 -08:00
conda [VERSION] Update to 0.5.dev (#1623) 2018-08-20 16:28:28 -07:00
docker [Relay][Frontend] Caffe2 Support (#2507) 2019-02-01 22:31:20 -08:00
docs [DOCS][RELAY] Sync up ops with code base (#2532) 2019-02-01 15:50:39 -08:00
golang [RUNTIME][GOLANG] TVM runtime for golang v0.1 (#1470) 2018-12-09 00:46:00 -05:00
include/tvm [OPT] Low-bit Quantization (#2116) 2019-01-31 13:53:44 -08:00
jvm Vulkan TVM Android Support (#1571) 2018-08-09 18:41:49 -07:00
nnvm [Relay][Frontend] CoreML Support (#2476) 2019-01-29 16:19:36 -08:00
python [Relay][Frontend] Caffe2 Support (#2507) 2019-02-01 22:31:20 -08:00
rust Update rust contributors (#2500) 2019-01-24 10:50:18 -08:00
src [RELAY] Copy subfunction arguments to output tuple field (#2537) 2019-02-01 09:56:36 -08:00
tests [Relay][Frontend] Caffe2 Support (#2507) 2019-02-01 22:31:20 -08:00
topi [BugFix] SSD fully supported on GPUs, updated deploy_ssd tutorial (#2510) 2019-01-30 19:08:01 +09:00
tutorials [Relay][Frontend] Caffe2 Support (#2507) 2019-02-01 22:31:20 -08:00
verilog Remove leading "./" from include paths (#1640) 2018-08-22 22:11:12 -07:00
vta Optimize Linux shared library modules (*.so files) (#2445) 2019-01-28 21:14:18 -08:00
web Fix Web Build after CMake transition. (#2407) 2019-01-09 12:19:53 -08:00
.clang-format add .clang-format (#2395) 2019-01-08 13:08:13 -08:00
.gitignore [Relay][RFC] Relay IR Text Format (#1781) 2018-12-02 10:35:01 -08:00
.gitmodules [Relay] Add generic & informative Relay error reporting (#2408) 2019-01-25 10:17:31 -08:00
.travis.yml Remove linux from travis (#156) 2017-05-22 19:47:12 -07:00
CMakeLists.txt Optimize Linux shared library modules (*.so files) (#2445) 2019-01-28 21:14:18 -08:00
CONTRIBUTORS.md [COMMUNITY] @FrozenGene -> Reviewer (#2544) 2019-02-01 21:58:47 -08:00
Jenkinsfile [TEST] Remove script that references previously removed content. (#2481) 2019-01-24 14:20:08 -05: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 Fix Web Build after CMake transition. (#2407) 2019-01-09 12:19:53 -08:00
NEWS.md [VERSION] Update to 0.5.dev (#1623) 2018-08-20 16:28:28 -07:00
NOTICE NOTICE (#2203) 2018-11-29 23:43:41 -08:00
README.md Update README.md typo (#2132) 2018-11-19 09:00:55 -08: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 arithmetic 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.