mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-06 12:20:52 +01:00
Pull Request resolved: https://github.com/pytorch/pytorch/pull/117829 Approved by: https://github.com/albanD
12 lines
436 B
C
12 lines
436 B
C
#ifndef THCP_CUDA_MODULE_INC
|
|
#define THCP_CUDA_MODULE_INC
|
|
|
|
PyObject* THCPModule_getDevice_wrap(PyObject* self);
|
|
PyObject* THCPModule_setDevice_wrap(PyObject* self, PyObject* arg);
|
|
PyObject* THCPModule_getDeviceName_wrap(PyObject* self, PyObject* arg);
|
|
PyObject* THCPModule_getDriverVersion(PyObject* self);
|
|
PyObject* THCPModule_isDriverSufficient(PyObject* self);
|
|
PyObject* THCPModule_getCurrentBlasHandle_wrap(PyObject* self);
|
|
|
|
#endif
|