mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Fixes #ISSUE_NUMBER Pull Request resolved: https://github.com/pytorch/pytorch/pull/92760 Approved by: https://github.com/Skylion007, https://github.com/albanD
21 lines
425 B
C
21 lines
425 B
C
#pragma once
|
|
|
|
#include <torch/csrc/Export.h>
|
|
#include <torch/csrc/python_headers.h>
|
|
|
|
#include <ATen/Device.h>
|
|
|
|
struct TORCH_API THPDevice {
|
|
PyObject_HEAD at::Device device;
|
|
};
|
|
|
|
TORCH_API extern PyTypeObject THPDeviceType;
|
|
|
|
inline bool THPDevice_Check(PyObject* obj) {
|
|
return Py_TYPE(obj) == &THPDeviceType;
|
|
}
|
|
|
|
TORCH_API PyObject* THPDevice_New(const at::Device& device);
|
|
|
|
TORCH_API void THPDevice_init(PyObject* module);
|