pytorch/torch
cyy f74a346213 Fix torch.hub.load("pytorch/vision") fails to validate the master branch (#56138)
Summary:
We should iterate all pages of the branches API. Otherwise, even using "pytorch/vision" would fail to find master.

Pull Request resolved: https://github.com/pytorch/pytorch/pull/56138

Reviewed By: heitorschueroff

Differential Revision: D27872346

Pulled By: ailzhang

fbshipit-source-id: 55881558f7980b1fb08b0d08ed6687a38df06edd
2021-04-20 09:33:25 -07:00
..
_C Fix distributed.test_jit_c10d flaky tests (#56410) 2021-04-20 09:28:27 -07:00
autograd Fix typo in gradcheck.py (#56368) 2021-04-19 15:53:02 -07:00
backends
contrib
csrc Make grad mode error just a warning (#56401) 2021-04-20 06:30:55 -07:00
cuda breakup optim, cuda documentation (#55673) 2021-04-14 12:44:00 -07:00
distributed Pytorch resolve bug around incorrect rdzv handler resolution (#56386) 2021-04-19 23:50:28 -07:00
distributions Un-ignore F403 in .flake8 (#55838) 2021-04-13 09:24:07 -07:00
fft
for_onnx Un-ignore F403 in .flake8 (#55838) 2021-04-13 09:24:07 -07:00
futures
fx Add lint for unqualified noqa (#56272) 2021-04-19 13:16:18 -07:00
jit Add lint for unqualified noqa (#56272) 2021-04-19 13:16:18 -07:00
legacy
lib unified GlooStore and c10d store API (#56222) 2021-04-19 10:57:18 -07:00
linalg
multiprocessing Un-ignore F403 in .flake8 (#55838) 2021-04-13 09:24:07 -07:00
nn [SPMD] Remove ddp_gpu_size field from SyncBatchNorm (#55946) 2021-04-19 21:41:29 -07:00
onnx Add padding_idx argument to EmbeddingBag (#49237) 2021-04-14 09:38:01 -07:00
optim [optim] take kw-only argument for functional optim APIs (#56185) 2021-04-15 20:08:04 -07:00
package [package] make GlobGroup a public concept (#56238) 2021-04-16 13:31:48 -07:00
profiler docs: fix profiler docstring (#55750) 2021-04-13 00:23:14 -07:00
quantization [quant][graphmode][fx] Add support for keeping output quantized for list and dict (#56391) 2021-04-19 21:37:11 -07:00
sparse
special [special] Add i0e (#54409) 2021-04-15 06:06:11 -07:00
testing Fix distributed.test_jit_c10d flaky tests (#56410) 2021-04-20 09:28:27 -07:00
utils Write mini dump on pybind exceptions (#55652) 2021-04-19 14:53:43 -07:00
__config__.py
__future__.py
__init__.py Update use_deterministic_algorithms docs (#55413) 2021-04-15 04:04:27 -07:00
_appdirs.py
_autograd_functions.py
_classes.py
_deploy.py
_jit_internal.py Additional annotations in fbcode/caffe2/torch/_jit_internal.py (#55855) 2021-04-15 09:47:17 -07:00
_linalg_utils.py
_lobpcg.py
_lowrank.py
_namedtensor_internals.py
_ops.py
_python_dispatcher.py
_six.py
_storage_docs.py
_tensor.py Add CSR (compressed sparse row) layout for sparse tensors (#50937) 2021-04-12 10:09:12 -07:00
_tensor_docs.py Add CSR (compressed sparse row) layout for sparse tensors (#50937) 2021-04-12 10:09:12 -07:00
_tensor_str.py Add CSR (compressed sparse row) layout for sparse tensors (#50937) 2021-04-12 10:09:12 -07:00
_torch_docs.py Fix TestTypeHints.test_doc_examples (#56388) 2021-04-19 15:27:09 -07:00
_utils.py
_utils_internal.py
_VF.py
_vmap_internals.py
abi-check.cpp
CMakeLists.txt Add minidump collection via breakpad (#55647) 2021-04-16 13:05:01 -07:00
custom_class.h
custom_class_detail.h
deploy.h
extension.h
functional.py Add lint for unqualified noqa (#56272) 2021-04-19 13:16:18 -07:00
hub.py Fix torch.hub.load("pytorch/vision") fails to validate the master branch (#56138) 2021-04-20 09:33:25 -07:00
library.h
overrides.py Python API for Vitals (#53238) 2021-04-15 16:06:43 -07:00
py.typed
quasirandom.py Port NumPy typing testing style to PyTorch (#54234) 2021-04-15 01:25:16 -07:00
random.py Port NumPy typing testing style to PyTorch (#54234) 2021-04-15 01:25:16 -07:00
README.txt
script.h
serialization.py
storage.py
types.py

Note [TH abstraction violation]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

TH/THC provide some hpp headers, which are proper C++ headers rather than
C headers.  These headers serve double duty as *internal implementation
detail* headers, whose contents should largely not be used by external
clients.

Ideally, we would not install these headers at all; instead, you should
use public functions (in headers like `THTensor.h`, NOT `THTensor.hpp`)
to manipulate these structs.  However, there are a few places
in torch/csrc where we violate this abstraction.  They are marked with
a pointer to this note.  Each of those sites will have to be refactored
when we refactor the guts of THTensor and related structures.