Fix include paths for UndefinedTensorImpl.h
authorSebastian Messmer <messmer@fb.com>
Wed, 12 Dec 2018 04:40:33 +0000 (20:40 -0800)
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>
Wed, 12 Dec 2018 05:01:45 +0000 (21:01 -0800)
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/14818

Reviewed By: ezyang

Differential Revision: D13348042

fbshipit-source-id: 11bdfc755767ce9d0a6fa95b2cf49d50adde8d60

aten/src/ATen/Utils.h
aten/src/ATen/core/Tensor.h
aten/src/ATen/core/ivalue.h
aten/src/ATen/templates/SparseTypeDerived.cpp
aten/src/ATen/templates/Tensor.h
aten/src/ATen/templates/TypeDerived.cpp
aten/src/ATen/test/undefined_tensor_test.cpp
caffe2/core/tensor.h
test/cpp_extensions/complex_registration_extension.cpp

index a07afe0..e2d1a6d 100644 (file)
@@ -2,7 +2,7 @@
 
 #include <ATen/core/ATenGeneral.h>
 #include <c10/core/StorageImpl.h>
-#include <ATen/core/UndefinedTensorImpl.h>
+#include <c10/core/UndefinedTensorImpl.h>
 
 #include <c10/core/ScalarType.h>
 #include <ATen/Formatting.h>
index 17da63a..b455ee3 100644 (file)
@@ -8,7 +8,7 @@
 #include <c10/core/Storage.h>
 #include <ATen/core/TensorAccessor.h>
 #include <c10/core/TensorImpl.h>
-#include <ATen/core/UndefinedTensorImpl.h>
+#include <c10/core/UndefinedTensorImpl.h>
 #include <c10/util/Exception.h>
 #include <c10/util/Optional.h>
 #include <ATen/core/LegacyTypeDispatch.h>
index 3d1d4c1..8b99ecc 100644 (file)
@@ -3,7 +3,7 @@
 #include <ATen/core/Scalar.h>
 #include <ATen/core/Tensor.h>
 #include <c10/core/TensorImpl.h>
-#include <ATen/core/UndefinedTensorImpl.h>
+#include <c10/core/UndefinedTensorImpl.h>
 #include <ATen/core/blob.h>
 #include <c10/util/intrusive_ptr.h>
 #include <ATen/core/thread_pool.h>
index 111ea33..d70cf76 100644 (file)
@@ -14,7 +14,7 @@
 #include <ATen/Utils.h>
 #include <ATen/WrapDimUtils.h>
 #include <ATen/core/Half.h>
-#include <ATen/core/UndefinedTensorImpl.h>
+#include <c10/core/UndefinedTensorImpl.h>
 #include <c10/util/Optional.h>
 
 #include <cstddef>
index 19b549e..a9bf3c8 100644 (file)
@@ -8,7 +8,7 @@
 #include <c10/core/Storage.h>
 #include <ATen/core/TensorAccessor.h>
 #include <c10/core/TensorImpl.h>
-#include <ATen/core/UndefinedTensorImpl.h>
+#include <c10/core/UndefinedTensorImpl.h>
 #include <c10/util/Exception.h>
 #include <c10/util/Optional.h>
 #include <ATen/core/LegacyTypeDispatch.h>
index 504c869..b748de7 100644 (file)
@@ -17,7 +17,7 @@ $storage_tensor_headers
 #include <ATen/WrapDimUtils.h>
 #include <ATen/core/Half.h>
 #include <c10/core/TensorImpl.h>
-#include <ATen/core/UndefinedTensorImpl.h>
+#include <c10/core/UndefinedTensorImpl.h>
 #include <c10/util/Optional.h>
 
 #include <cstddef>
index 205521b..9c9c42c 100644 (file)
@@ -1,7 +1,7 @@
 #include <gtest/gtest.h>
 
 #include <ATen/ATen.h>
-#include <ATen/core/UndefinedTensorImpl.h>
+#include <c10/core/UndefinedTensorImpl.h>
 #include <string>
 
 using namespace at;
index eb4347c..fc24e5d 100644 (file)
@@ -4,7 +4,7 @@
 #include "caffe2/core/storage.h"
 #include "caffe2/core/tensor_impl.h"
 
-#include <ATen/core/UndefinedTensorImpl.h>
+#include <c10/core/UndefinedTensorImpl.h>
 #include <c10/util/intrusive_ptr.h>
 #include "ATen/core/Tensor.h"
 #include <c10/core/TensorOptions.h>
index b73fec8..cdb38e7 100644 (file)
@@ -12,9 +12,9 @@
 #include "ATen/Utils.h"
 #include "ATen/WrapDimUtils.h"
 #include "ATen/core/Half.h"
-#include "c10/core/TensorImpl.h"
-#include "ATen/core/UndefinedTensorImpl.h"
-#include "c10/util/Optional.h"
+#include <c10/core/TensorImpl.h>
+#include <c10/core/UndefinedTensorImpl.h>
+#include <c10/util/Optional.h>
 
 #include <cstddef>
 #include <functional>