15 lines
314 B
Meson
15 lines
314 B
Meson
![]() |
py.extension_module(
|
||
|
'_utils',
|
||
|
[cython_gen.process('_utils.pyx'), utils_cython_tree],
|
||
|
subdir: 'sklearn/manifold',
|
||
|
install: true
|
||
|
)
|
||
|
|
||
|
py.extension_module(
|
||
|
'_barnes_hut_tsne',
|
||
|
cython_gen.process('_barnes_hut_tsne.pyx'),
|
||
|
dependencies: [np_dep, openmp_dep],
|
||
|
subdir: 'sklearn/manifold',
|
||
|
install: true
|
||
|
)
|