You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* [DOCS] Point docs to the ASF site.
We have migrated the main docs to the ASF site,
which will be periodically updated using the docs generated by the CI.
Points the docs to the ASF version.
* [CI] Improve the docs generation script
Thanks for contributing to TVM! Please refer to guideline https://docs.tvm.ai/contribute/ for useful information and tips. After the pull request is submitted, please request code reviews from [Reviewers](https://github.com/apache/incubator-tvm/blob/master/CONTRIBUTORS.md#reviewers) by @ them in the pull request thread.
1
+
Thanks for contributing to TVM! Please refer to guideline https://tvm.apache.org/docs/contribute/ for useful information and tips. After the pull request is submitted, please request code reviews from [Reviewers](https://github.com/apache/incubator-tvm/blob/master/CONTRIBUTORS.md#reviewers) by @ them in the pull request thread.
Copy file name to clipboardExpand all lines: CONTRIBUTORS.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ TVM Contributors
20
20
TVM adopts the Apache way and governs by merit. We believe that it is important to create an inclusive community where everyone can use,
21
21
contribute to, and influence the direction of the project. We actively invite contributors who have earned the merit to be part of the development community.
22
22
23
-
See the [community structure document](http://docs.tvm.ai/contribute/community.html) for the explanation of community structure and contribution guidelines.
23
+
See the [community structure document](https://tvm.apache.org/docs/contribute/community.html) for the explanation of community structure and contribution guidelines.
Copy file name to clipboardExpand all lines: NEWS.md
+39-39Lines changed: 39 additions & 39 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ to that issue so it can get added.
31
31
### Relay in Production
32
32
Relay is a functional, differentiable programming language designed to be an expressive intermediate representation for machine learning systems. Relay supports algebraic data types, closures, control flow, and recursion, allowing it to directly represent more complex models than computation graph-based IRs (e.g., NNVM) can. In TVM v0.6, Relay is in stable phase and is ready for production.
33
33
34
-
* Algebraic Data Types (ADT) support (#2442, #2575). ADT provides an expressive, efficient, and safe way to realize recursive computation (e.g., RNN). Refer to https://docs.tvm.ai/langref/relay_adt.html for more information.
34
+
* Algebraic Data Types (ADT) support (#2442, #2575). ADT provides an expressive, efficient, and safe way to realize recursive computation (e.g., RNN). Refer to https://tvm.apache.org/docs/langref/relay_adt.html for more information.
35
35
* Pass manager for Relay (#2546, #3226, #3234, #3191)
36
36
* Most frameworks have been supported in Relay, including ONNX, Keras, Tensorflow, Caffe2, CoreML, NNVMv1, MXNet (#2246).
37
37
* Explicitly manifest memory and tensor allocations in Relay. (#3560)
@@ -75,7 +75,7 @@ Relay is designed to natively support first-order and higher-order differentiati
75
75
Low-bit inference is getting more and more popular as it benefits both the performance and storage usage. TVM now supports two types of quantization. 1. Automatic quantizaion takes floating-point precision model, does per-layer calibration and generates low-bit model. 2. TVM also imports pre-quantized model from Tensorflow and MXNet, a new dialect QNN is introduced to handle further lowering to normal operators.
76
76
77
77
* Automatic Quantization
78
-
- Low-bit automatic quantization supported. (#2116). The workflow includes annotation, calibration and transformation.
78
+
- Low-bit automatic quantization supported. (#2116). The workflow includes annotation, calibration and transformation.
79
79
- Refactor quantization codebase and fix model accuracy. (#3543)
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@
17
17
18
18
<img src=https://raw.githubusercontent.com/apache/incubator-tvm-site/master/images/logo/tvm-logo-small.png width=128/> Open Deep Learning Compiler Stack
19
19
==============================================
20
-
[Documentation](https://docs.tvm.ai) |
20
+
[Documentation](https://tvm.apache.org/docs) |
21
21
[Contributors](CONTRIBUTORS.md) |
22
22
[Community](https://tvm.apache.org/community) |
23
23
[Release Notes](NEWS.md)
@@ -36,7 +36,7 @@ License
36
36
Contribute to TVM
37
37
-----------------
38
38
TVM adopts apache committer model, we aim to create an open source project that is maintained and owned by the community.
39
-
Checkout the [Contributor Guide](https://docs.tvm.ai/contribute/)
39
+
Checkout the [Contributor Guide](https://tvm.apache.org/docs/contribute/)
Copy file name to clipboardExpand all lines: apps/android_deploy/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -122,7 +122,7 @@ If everything goes well, you will find compile tools in `/opt/android-toolchain-
122
122
123
123
### Place compiled model on Android application assets folder
124
124
125
-
Follow instruction to get compiled version model for android target [here.](http://docs.tvm.ai/deploy/android.html)
125
+
Follow instruction to get compiled version model for android target [here.](https://tvm.apache.org/docs/deploy/android.html)
126
126
127
127
Copied these compiled model deploy_lib.so, deploy_graph.json and deploy_param.params to apps/android_deploy/app/src/main/assets/ and modify TVM flavor changes on [java](https://github.com/apache/incubator-tvm/blob/master/apps/android_deploy/app/src/main/java/org/apache/tvm/android/demo/MainActivity.java#L81)
Build TVM with LLVM and CUDA enabled. [Help](https://docs.tvm.ai/install/from_source.html)
44
+
Build TVM with LLVM and CUDA enabled. [Help](https://tvm.apache.org/docs/install/from_source.html)
45
45
46
46
```bash
47
47
python3 gpu_imagenet_bench.py --model 1080ti
@@ -58,7 +58,7 @@ You need to use it for reproducing benchmark results.
58
58
59
59
**Note**: We use llvm-4.0 in our tuning environment. Mismatch of the LLVM version during tuning and deployment can influence the performance, so you have to use a same version for reproduction.
60
60
61
-
0. Build TVM with LLVM enabled. [Help](https://docs.tvm.ai/install/from_source.html)
61
+
0. Build TVM with LLVM enabled. [Help](https://tvm.apache.org/docs/install/from_source.html)
62
62
63
63
1. Start an RPC Tracker on the host machine
64
64
```bash
@@ -67,7 +67,7 @@ python3 -m tvm.exec.rpc_tracker
67
67
68
68
2. Register devices to the tracker
69
69
* For Linux device
70
-
* Build tvm runtime on your device [Help](https://docs.tvm.ai/tutorials/frontend/deploy_model_on_rasp.html#build-tvm-runtime-on-device)
70
+
* Build tvm runtime on your device [Help](https://tvm.apache.org/docs/tutorials/frontend/deploy_model_on_rasp.html#build-tvm-runtime-on-device)
> Note: You'll notice that for every convolution layer, the throughput gets reported in GOPS. These numbers are actually the computational throughput that the simulator achieves, by evaluating the convolutions in software.
62
62
63
-
You are invited to try out our [VTA programming tutorials](https://docs.tvm.ai/vta/tutorials/index.html).
63
+
You are invited to try out our [VTA programming tutorials](https://tvm.apache.org/docs/vta/tutorials/index.html).
Copy file name to clipboardExpand all lines: jvm/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ This folder contains the Java interface for TVM runtime. It brings TVM runtime t
30
30
31
31
- JDK 1.6+. Oracle JDK and OpenJDK are well tested.
32
32
- Maven 3 for build.
33
-
- LLVM (TVM4J need LLVM support. Please refer to [build-the-shared-library](https://docs.tvm.ai/install/from_source.html#build-the-shared-library) for how to enable LLVM support.)
33
+
- LLVM (TVM4J need LLVM support. Please refer to [build-the-shared-library](https://tvm.apache.org/docs/install/from_source.html#build-the-shared-library) for how to enable LLVM support.)
34
34
35
35
### Modules
36
36
@@ -45,7 +45,7 @@ TVM4J contains three modules:
45
45
46
46
### Build
47
47
48
-
First please refer to [Installation Guide](http://docs.tvm.ai/install/) and build runtime shared library from the C++ codes (libtvm\_runtime.so for Linux and libtvm\_runtime.dylib for OSX).
48
+
First please refer to [Installation Guide](https://tvm.apache.org/docs/install/) and build runtime shared library from the C++ codes (libtvm\_runtime.so for Linux and libtvm\_runtime.dylib for OSX).
0 commit comments