mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-06-20 15:38:08 +02:00
start of cythoning coregionalize
This commit is contained in:
parent
2e8ce34ee0
commit
c00f76d250
3 changed files with 56 additions and 1 deletions
6
setup.py
6
setup.py
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue