-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To use the cython extension with windows ... #7
Comments
I tried but unfortunately it doesen't compile out of the box´, falls back to install the pure python version. Additionally I found with the version I compiled for Windows deviations depending on order of vectors: fastdtw(A,B) different to fastdtw(B,A). I would expect it should be the same. The pure python gives the correct solution independent of the order A,B or B,A. Kind regards |
Okay, increasing the radius improved the precision and the distance A->B becomes B->A. |
Current master is still broken on windows/cython. The reason is that stdc++ library does not exist. The module seems to compile and work fine if just removing this library reference. @slaypni please do that (I would, but don't know the "correct way" to do it within setup.py :) ) |
@shuffle2 I am also not good at writing setup.py.😭PR is welcome! |
Seems to be fixed on Windows 10. I think you can close this issue. |
@Seanny123 Thx! |
Well, it's not fixed (how would it be with no changes?). I still had to remove stdc++ reference from setup.py |
I had to do the following modifications:
Thank you for your great work!
Jan
The text was updated successfully, but these errors were encountered: