pytorch/torch
James Reed 05a1644ce3 Fix BC for quantized linear
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/30481

Test Plan: Imported from OSS

Differential Revision: D18714602

Pulled By: jamesr66a

fbshipit-source-id: d51206c22cf2446e98053446789c6324c0481321
2019-11-26 17:38:09 -08:00
..
autograd explicitly provide memory format when calling to *_like operators 2019-11-18 21:47:52 -08:00
backends
contrib
csrc Add comment to ops bound at python layer 2019-11-26 17:37:59 -08:00
cuda Move torch.cuda's atfork handler into C++ (#29101) 2019-11-11 07:34:27 -08:00
distributed By default ignore RRef leaks during shutdown (#30217) 2019-11-26 06:53:58 -08:00
distributions
for_onnx
jit Add clone_instance for Module (#30168) 2019-11-21 13:00:34 -08:00
legacy
lib transport open registration (#30167) 2019-11-22 17:41:52 -08:00
multiprocessing
nn Fix BC for quantized linear 2019-11-26 17:38:09 -08:00
onnx Export dynamic unbind/split and __getitem__ (#29136) 2019-11-26 06:54:06 -08:00
optim Make all optimizers consistent so that they don't change gradients inplace 2019-11-26 12:16:25 -08:00
quantization Bug fix: Handle missing keys in observer state dict during load (#30357) 2019-11-26 06:53:45 -08:00
sparse
testing
utils Fix for when PyTorch model trace has RecursiveScriptModules (#30430) 2019-11-26 06:53:35 -08:00
__config__.py
__future__.py
__init__.py explicitly provide memory format when calling to *_like operators 2019-11-11 17:57:34 -08:00
__init__.pyi.in
_classes.py
_jit_internal.py use new overload mechanism for rnns (#29614) 2019-11-13 15:44:25 -08:00
_namedtensor_internals.py
_ops.py
_six.py
_storage_docs.py
_tensor_docs.py Add op bitwise_xor to replace __xor__ and __ixor__ (#25665) 2019-11-12 16:14:04 -08:00
_tensor_str.py
_torch_docs.py Specify ordering on singular values and eigenvalues output from torch… (#30389) 2019-11-26 10:23:47 -08:00
_utils.py
_utils_internal.py
abi-check.cpp
CMakeLists.txt Add support for quantized operator conversion from PT to C2 via ONNX (#29694) 2019-11-18 12:12:40 -08:00
custom_class.h
extension.h
functional.py C++ API parity: isfinite 2019-11-19 20:00:05 -08:00
hub.py
py.typed
quasirandom.py
random.py Move torch.cuda's atfork handler into C++ (#29101) 2019-11-11 07:34:27 -08:00
README.txt
script.h
serialization.py (de)serialization of values between C++ and Python (#30108) 2019-11-23 00:06:07 -08:00
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.