-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Multiprocessing is hard. Especially when you include Windows in the mix. But this was a good exercise. It showed me how messed up my code is. Notes to future self: - The reason i've abandoned the path of trying to migrate to multiprocessing is because of the "spawn" method. It can be enabled on linux by using set_method("spawn"), and is the default method for MacOS, and the only method in Windows. - Also, doing multiprocessing the right way is hard. See - https://docs.python.org/3/library/multiprocessing.html#programming-guidelines - If you ever pursue "spawn" in the future, keep these in mind - https://docs.python.org/3/library/multiprocessing.html#the-spawn-and-forkserver-start-methods
- Loading branch information
Showing
2 changed files
with
25 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v0.3.2 | ||
v0.4.0 |