diff options
Diffstat (limited to 'chill/include/chillmodule.hh')
-rw-r--r-- | chill/include/chillmodule.hh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/chill/include/chillmodule.hh b/chill/include/chillmodule.hh new file mode 100644 index 0000000..a64ad1b --- /dev/null +++ b/chill/include/chillmodule.hh @@ -0,0 +1,21 @@ +#ifndef BASIC_CHILLMODULE_HH +#define BASIC_CHILLMODULE_HH +// TODO Python.h defines these and something else does too +#undef _POSIX_C_SOURCE +#undef _XOPEN_SOURCE + +#include <Python.h> + +// a C routine that will be called from python +//static PyObject * chill_print_code(PyObject *self, PyObject *args); + +//static PyMethodDef ChillMethods[] ; + +#ifndef CUDACHILL +void finalize_loop(int loop_num_start, int loop_num_end); +int get_loop_num_start(); +int get_loop_num_end(); +#endif + +PyMODINIT_FUNC initchill() ; // pass C methods to python +#endif |