mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-06 12:20:52 +01:00
14 lines
249 B
C
14 lines
249 B
C
#ifndef THP_MODULE_INC
|
|
#define THP_MODULE_INC
|
|
|
|
#define THP_STATELESS_ATTRIBUTE_NAME "_torch"
|
|
|
|
extern PyObject *THPDefaultTensorClass;
|
|
extern THPGenerator *THPDefaultGenerator;
|
|
|
|
#ifdef _THP_CORE
|
|
bool THPModule_isTensor(PyObject *obj);
|
|
#endif
|
|
|
|
#endif
|