diff options
author | Peter Goldsborough <psag@fb.com> | 2018-11-15 17:28:20 -0800 |
---|---|---|
committer | Facebook Github Bot <facebook-github-bot@users.noreply.github.com> | 2018-11-15 17:37:27 -0800 |
commit | 37cb357d8da3427900b8f72f6de7e77b77dcdbae (patch) | |
tree | 6e6035f38c2d44c0c4f8d0ba2fb4513e527091a0 /docs | |
parent | 8f4dc192b6331533f56fc23a86fa055ee4d580c0 (diff) | |
download | pytorch-37cb357d8da3427900b8f72f6de7e77b77dcdbae.tar.gz pytorch-37cb357d8da3427900b8f72f6de7e77b77dcdbae.tar.bz2 pytorch-37cb357d8da3427900b8f72f6de7e77b77dcdbae.zip |
Remove OptionsGuard from ATen (#13738)
Summary:
Deletes the `OptionsGuard` from ATen. This works towards the goal of reworking `DefaultTensorOptions`. `OptionsGuard` is troublesome because it relies on mutating thread local state. This PR fixes those code locations and then deletes the `OptionsGuard`.
ezyang gchanan
Pull Request resolved: https://github.com/pytorch/pytorch/pull/13738
Differential Revision: D13000962
Pulled By: goldsborough
fbshipit-source-id: c8143ee75070c2280f5fd1d9af86f8ce14279b72
Diffstat (limited to 'docs')
-rw-r--r-- | docs/cpp/source/Doxyfile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/docs/cpp/source/Doxyfile b/docs/cpp/source/Doxyfile index 8cc907338f..3de130d82e 100644 --- a/docs/cpp/source/Doxyfile +++ b/docs/cpp/source/Doxyfile @@ -39,7 +39,6 @@ INPUT = ../../../torch/csrc/api/include \ ../../../aten/src/ATen/Backend.h \ ../../../aten/src/ATen/DeviceGuard.h \ ../../../aten/src/ATen/Layout.h \ - ../../../aten/src/ATen/OptionsGuard.h \ ../../../aten/src/ATen/Scalar.h \ ../../../aten/src/ATen/TensorOptions.h \ ../../../aten/src/ATen/core/Half.h \ |