pytorch/torch
lizz 5d1205bf02 Suppress output when checking hipcc (#35789)
Summary:
Otherwise, it will print some message when hipcc is not found.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/35789

Differential Revision: D20793089

Pulled By: ezyang

fbshipit-source-id: 4b3cb29fb1d74a1931603ee01e669013ccae9685
2020-04-01 13:03:21 -07:00
..
autograd Gradcheck for complex (#35238) 2020-03-24 08:40:14 -07:00
backends
contrib
csrc Make kl_div accept target in log space (#34586) 2020-04-01 12:26:58 -07:00
cuda [RELAND2] Eager autocasting, out-of-place ops only (with MSVC 2017 fix) (#35102) 2020-03-24 09:08:04 -07:00
distributed Add All-to-all comms support to distributed module and MPI backend (#32361) 2020-04-01 08:57:12 -07:00
distributions [jit] Remove stray @script (#34938) 2020-03-24 13:44:38 -07:00
for_onnx
jit [pytorch] Remove python2 support from tests and torch.jit (#35042) 2020-03-26 21:29:51 -07:00
legacy
lib Add All-to-all comms support to distributed module and MPI backend (#32361) 2020-04-01 08:57:12 -07:00
multiprocessing
nn Make kl_div accept target in log space (#34586) 2020-04-01 12:26:58 -07:00
onnx [ONNX] Fix for constant folding: Slice, Added ReduceL1 and ReduceL2 (#35280) 2020-04-01 04:47:47 -07:00
optim
quantization [quant][graph] Add quant fusion for dynamic quantization (#35586) 2020-03-30 23:34:56 -07:00
sparse
testing Make kl_div accept target in log space (#34586) 2020-04-01 12:26:58 -07:00
utils Suppress output when checking hipcc (#35789) 2020-04-01 13:03:21 -07:00
__config__.py
__future__.py
__init__.py Removing references to PYTHON3COMPATIMPORTS. (#35384) 2020-04-01 10:34:04 -07:00
__init__.pyi.in [quant] Add dequantize.tensors (#34348) 2020-03-20 22:51:51 -07:00
_classes.py [reapply][JIT] Namespaces for TorchBind (#35254) 2020-03-24 00:39:48 -07:00
_jit_internal.py [jit] Delete polyfill typing (#27510) 2020-03-27 18:20:53 -07:00
_linalg_utils.py
_lobpcg.py
_lowrank.py
_namedtensor_internals.py
_ops.py
_overrides.py Make kl_div accept target in log space (#34586) 2020-04-01 12:26:58 -07:00
_six.py
_storage_docs.py
_tensor_docs.py Makes torch.real and torch.imag NumPy compatible, but disables them for complex tensors (#35560) 2020-03-29 02:09:00 -07:00
_tensor_str.py
_torch_docs.py Disables imag for real-valued tensors (#35728) 2020-03-31 21:34:46 -07:00
_utils.py
_utils_internal.py
_VF.py
abi-check.cpp
CMakeLists.txt [RELAND] New operator registration API (#35061) (#35629) 2020-03-29 19:48:29 -07:00
custom_class.h custom class method holder should hold a unique_ptr (#35218) 2020-03-27 16:58:40 -07:00
custom_class_detail.h custom class method holder should hold a unique_ptr (#35218) 2020-03-27 16:58:40 -07:00
extension.h
functional.py
hub.py
py.typed
quasirandom.py
random.py
README.txt
script.h
serialization.py
storage.py
tensor.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.