diff options
author | Edward Z. Yang <ezyang@mit.edu> | 2018-03-27 22:09:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-27 22:09:20 -0400 |
commit | eb18a2f26c7c7d8cd9826ab0cbd40bd541633805 (patch) | |
tree | 3dba793c398bd25598e72f3e334dd666385efede /.gitmodules | |
parent | bde2f6b2982d8875818e6cab6168801ad3cb6254 (diff) | |
download | pytorch-eb18a2f26c7c7d8cd9826ab0cbd40bd541633805.tar.gz pytorch-eb18a2f26c7c7d8cd9826ab0cbd40bd541633805.tar.bz2 pytorch-eb18a2f26c7c7d8cd9826ab0cbd40bd541633805.zip |
Reorganize third-party libraries into top-level third_party directory (#6025)
- gloo, pybind11, nanopb and nccl now live in third_party.
- ATen builds in aten/build rather than torch/lib/build/aten
- A bit of faffing about in the scripts was necessary, because they used to assume that everything lived in the same directory. Now you are expected to cd into the correct directory before calling one of the build functions. The actual builder script lives in tools
- Lint now just unconditionally ignores third_party, rather than enumerating folders explicitly
Diffstat (limited to '.gitmodules')
-rw-r--r-- | .gitmodules | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitmodules b/.gitmodules index b412d87c4c..8720a6a9aa 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,11 +1,11 @@ [submodule "torch/lib/gloo"] - path = torch/lib/gloo + path = third_party/gloo url = https://github.com/facebookincubator/gloo [submodule "torch/lib/pybind11"] - path = torch/lib/pybind11 + path = third_party/pybind11 url = https://github.com/pybind/pybind11 [submodule "torch/lib/nanopb"] - path = torch/lib/nanopb + path = third_party/nanopb url = https://github.com/nanopb/nanopb.git [submodule "aten/src/ATen/cpu/cpuinfo"] path = aten/src/ATen/cpu/cpuinfo |