diff options
author | Edward Yang <ezyang@fb.com> | 2018-10-24 08:20:53 -0700 |
---|---|---|
committer | Facebook Github Bot <facebook-github-bot@users.noreply.github.com> | 2018-10-24 08:27:44 -0700 |
commit | 34cca9f05b4b00e5a4dbda761baff00526b07ad8 (patch) | |
tree | 38f876c32063e99d9e590706bfe86f039d034ae8 /docs/cpp | |
parent | ca03c10cefa1e126eab1446d490f9314bd236c1b (diff) | |
download | pytorch-34cca9f05b4b00e5a4dbda761baff00526b07ad8.tar.gz pytorch-34cca9f05b4b00e5a4dbda761baff00526b07ad8.tar.bz2 pytorch-34cca9f05b4b00e5a4dbda761baff00526b07ad8.zip |
Move Device and DeviceType to c10
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/12995
Reviewed By: Yangqing
Differential Revision: D10513246
fbshipit-source-id: 0c6d52e09166d7e8a786c1a0e21685ec9c35b12a
Diffstat (limited to 'docs/cpp')
-rw-r--r-- | docs/cpp/source/Doxyfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/cpp/source/Doxyfile b/docs/cpp/source/Doxyfile index be18663c1d..1ae51b5910 100644 --- a/docs/cpp/source/Doxyfile +++ b/docs/cpp/source/Doxyfile @@ -37,14 +37,12 @@ INPUT = ../../../torch/csrc/api/include \ ../../../torch/csrc/jit/script/module.h \ ../../../aten/src/ATen/ATen.h \ ../../../aten/src/ATen/Backend.h \ - ../../../aten/src/ATen/Device.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/ArrayRef.h \ - ../../../aten/src/ATen/core/DeviceType.h \ ../../../aten/src/ATen/core/Half.h \ ../../../aten/src/ATen/core/ScalarType.h \ ../../../aten/src/ATen/core/Tensor.h \ @@ -58,6 +56,8 @@ INPUT = ../../../torch/csrc/api/include \ ../../../aten/src/ATen/mkl/Descriptors.h \ ../../../c10/util/Optional.h \ ../../../c10/util/Exception.h \ + ../../../c10/Device.h \ + ../../../c10/DeviceType.h \ ../../../build/aten/src/ATen/Functions.h # Don't include .cpp files! FILE_PATTERNS = *.h |