15 lines
322 B
Meson
15 lines
322 B
Meson
py.extension_module(
|
|
'_online_lda_fast',
|
|
[cython_gen.process('_online_lda_fast.pyx'), utils_cython_tree],
|
|
subdir: 'sklearn/decomposition',
|
|
install: true
|
|
)
|
|
|
|
py.extension_module(
|
|
'_cdnmf_fast',
|
|
cython_gen.process('_cdnmf_fast.pyx'),
|
|
dependencies: [np_dep],
|
|
subdir: 'sklearn/decomposition',
|
|
install: true
|
|
)
|