Skip to content
This repository was archived by the owner on Apr 28, 2023. It is now read-only.

Commit 48dbfde

Browse files
authored
Merge pull request #33 from doodlesbykumbi/patch-1
.gitsubmodule paths and instructions for cloning should be https not ssh
2 parents 922ff5b + fc51328 commit 48dbfde

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.gitmodules

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Development branches, we modify those heavily
22
[submodule "third-party/islpp"]
33
path = third-party/islpp
4-
url = git@github.com:nicolasvasilache/isl.git
4+
url = https://github.com/nicolasvasilache/isl.git
55
branch = ntv_dev
66
[submodule "third-party/cub"]
77
path = third-party/cub
8-
url = git@github.com:nicolasvasilache/cub.git
8+
url = https://github.com/nicolasvasilache/cub.git
99
branch = nvrtc-cub
1010
[submodule "third-party/halide"]
1111
path = third-party/halide
@@ -14,7 +14,7 @@
1414
# Mainstream branches, we don't modify those
1515
[submodule "third-party/caffe2"]
1616
path = third-party/caffe2
17-
url = git@github.com:caffe2/caffe2.git
17+
url = https://github.com/caffe2/caffe2.git
1818
[submodule "third-party/gflags"]
1919
path = third-party/gflags
2020
url = https://github.com/gflags/gflags
@@ -23,7 +23,7 @@
2323
url = https://github.com/google/glog.git
2424
[submodule "third-party/ATen"]
2525
path = third-party/ATen
26-
url = git@github.com:zdevito/aten.git
26+
url = https://github.com/zdevito/aten.git
2727
[submodule "third-party/dlpack"]
2828
path = third-party/dlpack
2929
url = https://github.com/dmlc/dlpack.git

docs/source/installation_conda.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ Now, you need to install TC from source. For installing TC from source, checkout
176176

177177
.. code-block:: bash
178178
179-
$ cd $HOME && git clone git@github.com:facebookresearch/TensorComprehensions.git --recursive
179+
$ cd $HOME && git clone https://github.com/facebookresearch/TensorComprehensions.git --recursive
180180
$ cd TensorComprehensions
181181
$ git submodule update --init --recursive
182182
$ conda install -y pyyaml

docs/source/installation_conda_dep.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ conda packages of TC dependencies and then build TC.
144144
$ source activate tc-build-conda
145145
$ conda install -y -c prigoyal tapir50 llvm isl-tc gflags glog
146146
$ conda install -y -c pytorch pytorch
147-
$ cd $HOME && git clone git@github.com:facebookresearch/TensorComprehensions.git --recursive
147+
$ cd $HOME && git clone https://github.com/facebookresearch/TensorComprehensions.git --recursive
148148
$ cd TensorComprehensions
149149
$ git submodule update --init --recursive
150150
$ BUILD_TYPE=Release INSTALL_PREFIX=$CONDA_PREFIX WITH_CAFFE2=OFF CLANG_PREFIX=$(llvm-config --prefix) ./build.sh --all

docs/source/installation_non_conda.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ TC from source, checkout the TensorComprehensions repo and run the following com
154154

155155
.. code-block:: bash
156156
157-
$ cd $HOME && git clone git@github.com:facebookresearch/TensorComprehensions.git --recursive
157+
$ cd $HOME && git clone https://github.com/facebookresearch/TensorComprehensions.git --recursive
158158
$ cd TensorComprehensions
159159
$ git submodule update --init --recursive
160160
$ export TC_DIR=$(pwd)

0 commit comments

Comments
 (0)