4
4
#include < c10/cuda/CUDAGuard.h>
5
5
#endif
6
6
7
+ #include < torch/csrc/utils/python_numbers.h>
7
8
#include < random>
8
9
9
10
static PyObject * THPStorage_ (sharedDecref)(PyObject *_self, PyObject *noargs)
@@ -95,7 +96,7 @@ static PyObject * THPStorage_(shareFilename)(PyObject *_self, PyObject *noargs)
95
96
if (!manager_handle) return nullptr ;
96
97
THPObjectPtr storage_handle (PyBytes_FromString (ctx->filename ()));
97
98
if (!storage_handle) return nullptr ;
98
- THPObjectPtr size (PyLong_FromLong (storage->nbytes () / sizeof (scalar_t )));
99
+ THPObjectPtr size (THPUtils_packUInt64 (storage->nbytes () / sizeof (scalar_t )));
99
100
if (!size) return nullptr ;
100
101
101
102
THPObjectPtr tuple (PyTuple_New (3 ));
@@ -172,9 +173,9 @@ static PyObject * THPStorage_(shareFd)(PyObject *_self, PyObject *noargs)
172
173
AT_ASSERT (ctx);
173
174
}
174
175
175
- THPObjectPtr storage_handle (PyLong_FromLong (ctx->fd ()));
176
+ THPObjectPtr storage_handle (THPUtils_packInt32 (ctx->fd ()));
176
177
if (!storage_handle) return nullptr ;
177
- THPObjectPtr size (PyLong_FromLong (storage->nbytes () / sizeof (scalar_t )));
178
+ THPObjectPtr size (THPUtils_packUInt64 (storage->nbytes () / sizeof (scalar_t )));
178
179
if (!size) return nullptr ;
179
180
180
181
THPObjectPtr tuple (PyTuple_New (2 ));
@@ -231,14 +232,14 @@ static PyObject * THPStorage_(shareCuda)(PyObject *_self, PyObject *noargs)
231
232
232
233
at::DeviceGuard device_guard (storage->device ());
233
234
THPObjectPtr tuple (PyTuple_New (8 ));
234
- THPObjectPtr device (PyLong_FromLong (storage->device ().index ()));
235
+ THPObjectPtr device (THPUtils_packInt32 (storage->device ().index ()));
235
236
THPObjectPtr _handle (Py_None);
236
237
Py_INCREF (Py_None);
237
- THPObjectPtr size_bytes (PyLong_FromLong (storage->nbytes ()));
238
- THPObjectPtr _offset_bytes (PyLong_FromLong (0 ));
238
+ THPObjectPtr size_bytes (THPUtils_packUInt64 (storage->nbytes ()));
239
+ THPObjectPtr _offset_bytes (THPUtils_packInt32 (0 ));
239
240
THPObjectPtr _ref_counter (Py_None);
240
241
Py_INCREF (Py_None);
241
- THPObjectPtr _ref_counter_offset (PyLong_FromLong (0 ));
242
+ THPObjectPtr _ref_counter_offset (THPUtils_packInt32 (0 ));
242
243
THPObjectPtr _event_handle (Py_None);
243
244
Py_INCREF (Py_None);
244
245
THPObjectPtr _event_sync_required (Py_None);
@@ -261,7 +262,7 @@ static PyObject * THPStorage_(shareCuda)(PyObject *_self, PyObject *noargs)
261
262
auto sent_data = static_cast <torch::CudaIPCSentData*>(storage->data_ptr ().get_context ());
262
263
sent_data->set_original_ptr (std::move (old_data_ptr));
263
264
_ref_counter = PyBytes_FromString ((sent_data->handle ()).c_str ());
264
- _ref_counter_offset = PyLong_FromLong (sent_data->offset ());
265
+ _ref_counter_offset = THPUtils_packInt64 (sent_data->offset ());
265
266
266
267
267
268
cudaIpcEventHandle_t ipc_event_handle;
@@ -515,7 +516,7 @@ PyObject * THPStorage_(sharedFd)(PyObject *_self, PyObject *noargs)
515
516
#endif
516
517
517
518
THPUtils_assert (ctx, " couldn't retrieve a shared file descriptor" );
518
- return PyLong_FromLong (ctx->fd ());
519
+ return THPUtils_packInt32 (ctx->fd ());
519
520
END_HANDLE_TH_ERRORS
520
521
}
521
522
0 commit comments