start of cythoning coregionalize

This commit is contained in:
James Hensman 2015-04-27 16:00:42 +01:00
parent 2e8ce34ee0
commit c00f76d250
3 changed files with 56 additions and 1 deletions

View file

@ -17,7 +17,11 @@ ext_mods = [Extension(name='GPy.kern._src.stationary_cython',
sources=['GPy/kern/_src/stationary_cython.c','GPy/kern/_src/stationary_utils.c'],
include_dirs=[np.get_include()],
extra_compile_args=compile_flags,
extra_link_args = ['-lgomp'])]
extra_link_args = ['-lgomp']),
Extension(name='GPy.kern._src.coregionalize_cython',
sources=['GPy/kern/_src/coregionalize_cython.c','GPy/kern/_src/coregionalize_cython.c'],
include_dirs=[np.get_include()],
extra_compile_args=compile_flags)]
setup(name = 'GPy',
version = version,