提交 88af5134 authored 作者: Pierre Luc Carrier's avatar Pierre Luc Carrier

Update version of scan's cython code

上级 a0cc7932
...@@ -49,5 +49,3 @@ ...@@ -49,5 +49,3 @@
goto __pyx_L0; goto __pyx_L0;
} }
__pyx_L3:; __pyx_L3:;
/* Generated by Cython 0.19.2 on Mon Feb 23 08:39:31 2015 */ /* Generated by Cython 0.19.2 on Mon Feb 23 10:17:12 2015 */
#define PY_SSIZE_T_CLEAN #define PY_SSIZE_T_CLEAN
#ifndef CYTHON_USE_PYLONG_INTERNALS #ifndef CYTHON_USE_PYLONG_INTERNALS
...@@ -1529,7 +1529,7 @@ static PyObject *__pyx_pw_6theano_11scan_module_12scan_perform_1get_version(PyOb ...@@ -1529,7 +1529,7 @@ static PyObject *__pyx_pw_6theano_11scan_module_12scan_perform_1get_version(PyOb
* *
* *
* def get_version(): # <<<<<<<<<<<<<< * def get_version(): # <<<<<<<<<<<<<<
* return 0.284 * return 0.285
* *
*/ */
...@@ -1545,12 +1545,12 @@ static PyObject *__pyx_pf_6theano_11scan_module_12scan_perform_get_version(CYTHO ...@@ -1545,12 +1545,12 @@ static PyObject *__pyx_pf_6theano_11scan_module_12scan_perform_get_version(CYTHO
/* "theano/scan_module/scan_perform.pyx":65 /* "theano/scan_module/scan_perform.pyx":65
* *
* def get_version(): * def get_version():
* return 0.284 # <<<<<<<<<<<<<< * return 0.285 # <<<<<<<<<<<<<<
* *
* @cython.boundscheck(False) * @cython.boundscheck(False)
*/ */
__Pyx_XDECREF(__pyx_r); __Pyx_XDECREF(__pyx_r);
__pyx_t_1 = PyFloat_FromDouble(0.284); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 65; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_1 = PyFloat_FromDouble(0.285); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 65; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
__Pyx_GOTREF(__pyx_t_1); __Pyx_GOTREF(__pyx_t_1);
__pyx_r = __pyx_t_1; __pyx_r = __pyx_t_1;
__pyx_t_1 = 0; __pyx_t_1 = 0;
...@@ -7547,7 +7547,7 @@ static int __Pyx_InitCachedConstants(void) { ...@@ -7547,7 +7547,7 @@ static int __Pyx_InitCachedConstants(void) {
* *
* *
* def get_version(): # <<<<<<<<<<<<<< * def get_version(): # <<<<<<<<<<<<<<
* return 0.284 * return 0.285
* *
*/ */
__pyx_k_codeobj_32 = (PyObject*)__Pyx_PyCode_New(0, 0, 0, 0, 0, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_33, __pyx_n_s__get_version, 64, __pyx_empty_bytes); if (unlikely(!__pyx_k_codeobj_32)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 64; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_k_codeobj_32 = (PyObject*)__Pyx_PyCode_New(0, 0, 0, 0, 0, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_33, __pyx_n_s__get_version, 64, __pyx_empty_bytes); if (unlikely(!__pyx_k_codeobj_32)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 64; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
...@@ -7766,7 +7766,7 @@ PyMODINIT_FUNC PyInit_scan_perform(void) ...@@ -7766,7 +7766,7 @@ PyMODINIT_FUNC PyInit_scan_perform(void)
* *
* *
* def get_version(): # <<<<<<<<<<<<<< * def get_version(): # <<<<<<<<<<<<<<
* return 0.284 * return 0.285
* *
*/ */
__pyx_t_2 = PyCFunction_NewEx(&__pyx_mdef_6theano_11scan_module_12scan_perform_1get_version, NULL, __pyx_n_s_34); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 64; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = PyCFunction_NewEx(&__pyx_mdef_6theano_11scan_module_12scan_perform_1get_version, NULL, __pyx_n_s_34); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 64; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
......
...@@ -62,7 +62,7 @@ import copy ...@@ -62,7 +62,7 @@ import copy
def get_version(): def get_version():
return 0.284 return 0.285
@cython.boundscheck(False) @cython.boundscheck(False)
def perform( def perform(
......
...@@ -16,7 +16,7 @@ from theano.gof import cmodule ...@@ -16,7 +16,7 @@ from theano.gof import cmodule
_logger = logging.getLogger('theano.scan_module.scan_perform') _logger = logging.getLogger('theano.scan_module.scan_perform')
version = 0.284 # must match constant returned in function get_version() version = 0.285 # must match constant returned in function get_version()
need_reload = False need_reload = False
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论