diff --git a/README.md b/README.md index f306060b0955..5a56bcd29731 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,4 @@ -[![Build Status](https://travis-ci.com/tqchen/tvm.svg?token=ZQpnpAReT4LHdjWAX8jR&branch=master)](https://travis-ci.com/tqchen/tvm) -[![GitHub license](http://dmlc.github.io/img/apache2.svg)](./LICENSE) +[![Build Status](https://travis-ci.com/tqchen/tvm.svg?token=ZQpnpAReT4LHdjWAX8jR&branch=master)](https://travis-ci.com/dmlc/tvm) [Installation](docs/how_to/install.md) | [Documentation](docs) | diff --git a/docs/how_to/install.md b/docs/how_to/install.md index b4ab6b196142..e43d6d4cc37a 100644 --- a/docs/how_to/install.md +++ b/docs/how_to/install.md @@ -8,7 +8,7 @@ scratch on various systems. It consists of two steps: To get started, clone tvm repo from github. It is important to clone the submodules along, with ```--recursive``` option. ```bash -git clone --recursive ssh://git@github.com/tqchen/tvm +git clone --recursive ssh://git@github.com/dmlc/tvm ``` For windows users who use github tools, you can open the git shell, and type the following command. ```bash diff --git a/python/setup.py b/python/setup.py index 1903cf7b3682..4070dc64cbed 100644 --- a/python/setup.py +++ b/python/setup.py @@ -75,5 +75,5 @@ def config_cython(): 'tvm._ffi._cy2', 'tvm._ffi._cy3' ], data_files=[('tvm', [LIB_PATH[0]])], - url='https://github.com/tqchen/tvm', + url='https://github.com/dmlc/tvm', ext_modules=config_cython())