update_document_after_repository_renamed (#4398)
authortripley <34867417+gittripley@users.noreply.github.com>
Fri, 22 Nov 2019 03:12:05 +0000 (19:12 -0800)
committerTianqi Chen <tqchen@users.noreply.github.com>
Fri, 22 Nov 2019 03:12:05 +0000 (19:12 -0800)
12 files changed:
apps/sgx/README.md
docs/deploy/index.rst
docs/install/docker.rst
docs/install/from_source.rst
docs/install/nnpack.md
docs/vta/install.md
nnvm/tutorials/deploy_model_on_mali_gpu.py
nnvm/tutorials/deploy_model_on_rasp.py
tutorials/cross_compilation_and_rpc.py
tutorials/frontend/deploy_model_on_android.py
tutorials/frontend/deploy_model_on_rasp.py
vta/apps/tsim_example/README.md

index b01cc80..13f72b0 100644 (file)
@@ -39,7 +39,7 @@ Check out the `/tvm/install/ubuntu_install_sgx.sh` for the commands to get these
 If using Docker, start by running
 
 ```
-git clone --recursive https://github.com/apache/incubator-tvm.git
+git clone --recursive https://github.com/apache/incubator-tvm.git tvm
 docker run --rm -it -v $(pwd)/tvm:/mnt tvmai/ci-cpu /bin/bash
 ```
 then, in the container
index 0f4401c..db50865 100644 (file)
@@ -38,7 +38,7 @@ on a Linux based embedded system such as Raspberry Pi:
 
 .. code:: bash
 
-    git clone --recursive https://github.com/apache/incubator-tvm
+    git clone --recursive https://github.com/apache/incubator-tvm tvm
     cd tvm
     mkdir build
     cp cmake/config.cmake build
index fe2bb6a..3e6e679 100644 (file)
@@ -29,7 +29,7 @@ First, clone TVM repo to get the auxiliary scripts
 
 .. code:: bash
 
-    git clone --recursive https://github.com/apache/incubator-tvm
+    git clone --recursive https://github.com/apache/incubator-tvm tvm
 
 
 We can then use the following command to launch a `tvmai/demo-cpu` image.
index e723687..acbd9b4 100644 (file)
@@ -29,7 +29,7 @@ To get started, clone TVM repo from github. It is important to clone the submodu
 
 .. code:: bash
 
-    git clone --recursive https://github.com/apache/incubator-tvm
+    git clone --recursive https://github.com/apache/incubator-tvm tvm
 
 For windows users who use github tools, you can open the git shell, and type the following command.
 
index 3c97332..6e46a83 100644 (file)
@@ -85,7 +85,7 @@ sudo ldconfig
 ## Build TVM with NNPACK support
 
 ```bash
-git clone --recursive https://github.com/apache/incubator-tvm
+git clone --recursive https://github.com/apache/incubator-tvm tvm
 ```
 
 * Set `set(USE_NNPACK ON)` in config.cmake.
index 3d2f11f..dfa0eae 100644 (file)
@@ -103,7 +103,7 @@ Because the direct board-to-computer connection prevents the board from directly
 mkdir <mountpoint>
 sshfs xilinx@192.168.2.99:/home/xilinx <mountpoint>
 cd <mountpoint>
-git clone --recursive https://github.com/apache/incubator-tvm
+git clone --recursive https://github.com/apache/incubator-tvm tvm
 # When finished, you can leave the moutpoint and unmount the directory
 cd ~
 sudo umount <mountpoint>
index 13ed59f..d90b095 100644 (file)
@@ -53,7 +53,7 @@ from tvm.contrib.download import download_testdata
 #
 # .. code-block:: bash
 #
-#   git clone --recursive https://github.com/apache/incubator-tvm
+#   git clone --recursive https://github.com/apache/incubator-tvm tvm
 #   cd tvm
 #   cp cmake/config.cmake .
 #   sed -i "s/USE_OPENCL OFF/USE_OPENCL ON/" config.cmake
index 7acaf4a..576b517 100644 (file)
@@ -52,7 +52,7 @@ from tvm.contrib.download import download_testdata
 #
 # .. code-block:: bash
 #
-#   git clone --recursive https://github.com/apache/incubator-tvm
+#   git clone --recursive https://github.com/apache/incubator-tvm tvm
 #   cd tvm
 #   make runtime -j4
 #
index 5ae6eae..2ffcb11 100644 (file)
@@ -49,7 +49,7 @@ and the Firefly-RK3399 for an OpenCL example.
 #
 # .. code-block:: bash
 #
-#   git clone --recursive https://github.com/apache/incubator-tvm
+#   git clone --recursive https://github.com/apache/incubator-tvm tvm
 #   cd tvm
 #   make runtime -j2
 #
index d4d1fe2..813254d 100644 (file)
@@ -46,7 +46,7 @@ from tvm.contrib.download import download_testdata
 #
 # .. code-block:: bash
 #
-#   git clone --recursive https://github.com/apache/incubator-tvm
+#   git clone --recursive https://github.com/apache/incubator-tvm tvm
 #   cd tvm
 #   docker build -t tvm.demo_android -f docker/Dockerfile.demo_android ./docker
 #   docker run --pid=host -h tvm -v $PWD:/workspace \
index 1086999..e78c736 100644 (file)
@@ -52,7 +52,7 @@ from tvm.contrib.download import download_testdata
 #
 # .. code-block:: bash
 #
-#   git clone --recursive https://github.com/apache/incubator-tvm
+#   git clone --recursive https://github.com/apache/incubator-tvm tvm
 #   cd tvm
 #   mkdir build
 #   cp cmake/config.cmake build
index 9974022..97758b9 100644 (file)
@@ -62,7 +62,7 @@ https://www.veripool.org/projects/verilator/wiki/Installing
 ## Setup in TVM
 
 1. Install `verilator` and `sbt` as described above
-2. Get tvm `git clone https://github.com/apache/incubator-tvm.git`
+2. Get tvm `git clone https://github.com/apache/incubator-tvm.git tvm --recursive`
 3. Build [tvm](https://docs.tvm.ai/install/from_source.html#build-the-shared-library)
 
 ## How to run VTA TSIM examples