blob: 32868120c06a1b62e1a91fa2e63abf665ab01dd5 [file] [log] [blame]
#pragma once
#include <torch/csrc/python_headers.h>
#include <torch/csrc/WindowsTorchApiMacro.h>
#include <ATen/Device.h>
// NOLINTNEXTLINE(cppcoreguidelines-pro-type-member-init)
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);