Skip to content

Commit

Permalink
update_document_after_repository_renamed (#4398)
Browse files Browse the repository at this point in the history
  • Loading branch information
gittripley authored and tqchen committed Nov 22, 2019
1 parent 4b2c4c3 commit 030a163
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion apps/sgx/README.md
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/deploy/index.rst
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/install/docker.rst
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/install/from_source.rst
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion docs/install/nnpack.md
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/vta/install.md
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion nnvm/tutorials/deploy_model_on_mali_gpu.py
Expand Up @@ -53,7 +53,7 @@
#
# .. 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
Expand Down
2 changes: 1 addition & 1 deletion nnvm/tutorials/deploy_model_on_rasp.py
Expand Up @@ -52,7 +52,7 @@
#
# .. 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
#
Expand Down
2 changes: 1 addition & 1 deletion tutorials/cross_compilation_and_rpc.py
Expand Up @@ -49,7 +49,7 @@
#
# .. 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
#
Expand Down
2 changes: 1 addition & 1 deletion tutorials/frontend/deploy_model_on_android.py
Expand Up @@ -46,7 +46,7 @@
#
# .. 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 \
Expand Down
2 changes: 1 addition & 1 deletion tutorials/frontend/deploy_model_on_rasp.py
Expand Up @@ -52,7 +52,7 @@
#
# .. 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
Expand Down
2 changes: 1 addition & 1 deletion vta/apps/tsim_example/README.md
Expand Up @@ -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
Expand Down

0 comments on commit 030a163

Please sign in to comment.