Skip to content

Commit d9e7d85

Browse files
kurtamohlerfacebook-github-bot
authored andcommitted
Remove TH/THC Storage (pytorch#68556)
Summary: Fixes pytorch#67852 cc ezyang bhosmer smessmer ljk53 bdhirsh Pull Request resolved: pytorch#68556 Reviewed By: ejguan Differential Revision: D32652758 Pulled By: ngimel fbshipit-source-id: 170956fca112606f9008abe09b92c6ddc411be09
1 parent f5fa91b commit d9e7d85

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+255
-703
lines changed

BUILD.bazel

-4
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,6 @@ filegroup(
349349
name = "th_srcs",
350350
srcs = [
351351
"aten/src/TH/THGeneral.cpp",
352-
"aten/src/TH/THStorageFunctions.cpp",
353352
"aten/src/TH/THTensor.cpp",
354353
],
355354
)
@@ -385,8 +384,6 @@ filegroup(
385384
"aten/src/ATen/native/sparse/cuda/SparseCUDATensor.cpp",
386385
"aten/src/ATen/native/sparse/cuda/SparseBlas.cpp",
387386
"aten/src/ATen/native/sparse/cuda/SparseBlasImpl.cpp",
388-
"aten/src/THC/THCStorage.cpp",
389-
"aten/src/THC/THCTensor.cpp",
390387
],
391388
)
392389

@@ -396,7 +393,6 @@ filegroup(
396393
"aten/src/THC/THCReduceApplyUtils.cu.cc",
397394
"aten/src/THC/THCSleep.cu.cc",
398395
"aten/src/THC/THCSortUtils.cu.cc",
399-
"aten/src/THC/THCStorage.cu.cc",
400396
"aten/src/THC/THCTensor.cu.cc",
401397
"aten/src/THC/THCTensorCopy.cu.cc",
402398
"aten/src/THC/THCTensorMathScan.cu.cc",

aten/src/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class DataPtr;
1010
namespace hip {
1111
namespace HIPCachingAllocatorMasqueradingAsCUDA {
1212

13-
Allocator* get();
13+
C10_HIP_API Allocator* get();
1414
C10_HIP_API void recordStreamMasqueradingAsCUDA(const DataPtr& ptr, HIPStreamMasqueradingAsCUDA stream);
1515

1616
} // namespace HIPCachingAllocatorMasqueradingAsCUDA

aten/src/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ multiple variants of the library, summarized here:
1717
PyTorch employs reference counting in order to permit tensors to provide
1818
differing views on a common underlying storage. For example, when you call
1919
view() on a Tensor, a new THTensor is allocated with differing dimensions,
20-
but it shares the same THStorage with the original tensor.
20+
but it shares the same c10::StorageImpl with the original tensor.
2121

2222
Unfortunately, this means we are in the business of manually tracking reference
2323
counts inside our C library code. Fortunately, for most of our library code implementing
@@ -63,9 +63,9 @@ of freeing it. If that function holds on to a pointer to the object, it
6363
will `retain` it itself.
6464

6565
```
66-
THLongStorage *inferred_size = THLongStorage_newInferSize(size, numel);
66+
THByteStorage *inferred_size = THByteStorage_newInferSize(size, numel);
6767
THTensor_(setStorage)(self, tensor->storage, tensor->storageOffset, inferred_size, NULL);
68-
THLongStorage_free(inferred_size);
68+
c10::raw::intrusive_ptr::decref(inferred_size);
6969
```
7070

7171
Sometimes, you have a tensor in hand which you'd like to use directly, but

aten/src/TH/CMakeLists.txt

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
set(Aten_TH_AVX_extra_src)
22

33
set(hdr
4-
THGeneral.h THHalf.h THStorage.h THStorageFunctions.h THTensor.h)
4+
THGeneral.h THHalf.h THTensor.h)
55

66
set(ATen_TH_SRCS
77
${CMAKE_CURRENT_SOURCE_DIR}/THGeneral.cpp
8-
${CMAKE_CURRENT_SOURCE_DIR}/THStorageFunctions.cpp
98
${CMAKE_CURRENT_SOURCE_DIR}/THTensor.cpp
109
)
1110
# Remember that PARENT_SCOPE variables are not in the current scope
@@ -35,17 +34,12 @@ install(FILES
3534
TH.h
3635
${CMAKE_CURRENT_BINARY_DIR}/THGeneral.h
3736
THGenerateByteType.h
38-
THStorage.h
39-
THStorageFunctions.h
4037
THTensor.h
4138
THHalf.h
4239
THTensor.hpp
43-
THStorageFunctions.hpp
4440
DESTINATION "${ATEN_INSTALL_INCLUDE_SUBDIR}/TH")
4541

4642
install(FILES
47-
generic/THStorage.cpp
48-
generic/THStorage.h
4943
generic/THTensor.cpp
5044
generic/THTensor.h
5145
# See Note [TH abstraction violation]

aten/src/TH/TH.h

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
#define TH_INC
33

44
#include <TH/THGeneral.h>
5-
6-
#include <TH/THStorageFunctions.h>
75
#include <TH/THTensor.h>
86

97
#endif

aten/src/TH/THStorage.h

-4
This file was deleted.

aten/src/TH/THStorageFunctions.cpp

-39
This file was deleted.

aten/src/TH/THStorageFunctions.h

-11
This file was deleted.

aten/src/TH/THStorageFunctions.hpp

-38
This file was deleted.

aten/src/TH/THTensor.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ void THTensor_free(THTensor *self)
1616
c10::raw::intrusive_ptr::decref(self);
1717
}
1818

19-
void THTensor_setStorage(THTensor *self, THStorage *storage_, ptrdiff_t storageOffset_, at::IntArrayRef size_, at::IntArrayRef stride_) {
19+
void THTensor_setStorage(THTensor *self, c10::StorageImpl *storage_, ptrdiff_t storageOffset_, at::IntArrayRef size_, at::IntArrayRef stride_) {
2020
c10::raw::intrusive_ptr::incref(storage_);
2121
THTensor_wrap(self).set_(at::Storage(c10::intrusive_ptr<at::StorageImpl>::reclaim(storage_)), storageOffset_, size_, stride_);
2222
}

aten/src/TH/THTensor.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef TH_TENSOR_INC
22
#define TH_TENSOR_INC
33

4-
#include <TH/THStorageFunctions.h>
4+
#include <TH/THGeneral.h>
55

66
#define THTensor_(NAME) TH_CONCAT_4(TH,Real,Tensor_,NAME)
77

aten/src/TH/THTensor.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// read Note [TH abstraction violation]
55

66
#include <TH/THTensor.h>
7-
#include <TH/THStorageFunctions.hpp>
7+
#include <c10/core/StorageImpl.h>
88

99
#include <atomic>
1010
#include <ATen/ATen.h>
@@ -18,4 +18,4 @@ inline at::Tensor THTensor_wrap(THTensor* tensor) {
1818

1919
TH_API void THTensor_free(THTensor *self);
2020

21-
TH_CPP_API void THTensor_setStorage(THTensor *self, THStorage *storage_, ptrdiff_t storageOffset_, at::IntArrayRef size_, at::IntArrayRef stride_);
21+
TH_CPP_API void THTensor_setStorage(THTensor *self, c10::StorageImpl *storage_, ptrdiff_t storageOffset_, at::IntArrayRef size_, at::IntArrayRef stride_);

aten/src/TH/generic/THStorage.cpp

-129
This file was deleted.

0 commit comments

Comments
 (0)