Sign in
android
/
platform
/
external
/
pytorch
/
96aafc3cdc58963591addb51a47e49aabc06dd6f
/
.
/
torch
/
csrc
/
stub.cpp
blob: e029f5ff8b5561d2c4bc8d919b8cb53dea44284c [
file
] [
log
] [
blame
]
#include
<Python.h>
#ifdef
_WIN32
__declspec
(
dllimport
)
#endif
extern
PyObject
*
initModule
();
#if PY_MAJOR_VERSION == 2
PyMODINIT_FUNC
init_C
()
{
initModule
();
}
#else
PyMODINIT_FUNC
PyInit__C
()
{
return
initModule
();
}
#endif