And I found that _simulateDSM.py ignore cblas extend pyd under windows:
try:
if 'nt' in os.name:
# if somebody actually goes through the trouble of compiling
# it on Windows, we'll make available a patch to re-enable it.
# In most cases now, users only get error messages from BLAS
# not being available.
raise ImportError('CBLAS extension disabled on Windows')
I install mingw-w64 with gcc version 9.1.0 (Rev3, Built by MSYS2 project) and mingw-openblas.
Compile ok with this Makefile:
libopenblas.lib generated from gendef.exe
And I found that
_simulateDSM.py
ignore cblas extend pyd under windows:When I put all together, the extension works.
My question is: How to make sure this is correct?