-
Notifications
You must be signed in to change notification settings - Fork 0
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
run pipeline on windows computer #28
Comments
first encountered file path issue fixed in commit 9fc9052 |
to fix multithreading issued tried implementing: “if windows, then “spawn” otherwise “fork” (d09bd9e) this only provides a partial fix as workers seem to be created but they continue endlessly without starting any proper computation |
a quick workaround to at least get some version of the code running on windows could be to check for the operating system and if windows force threading to be turned off. |
Windows will permanently only be supported for running without multiprocessing. Implementing a multithreaded version which is also functional on windows is out of scope at the moment. Will retain this issue until for all processing steps a check has been implemented that automatically sets threads to 1 if a windows system is detected. |
detected issues:
The text was updated successfully, but these errors were encountered: