This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ezwelty
Recipients ezwelty, ned.deily, ronaldoussoren, terry.reedy
Date 2018-03-27.04:16:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1522124190.16.0.467229070634.issue33111@psf.upfronthosting.co.za>
In-reply-to
Content
Terry Reedy: I just tried your suggestion of a main clause (code below) and it made no difference.

```
import _tkinter
import numpy as np
# multiprocessing.set_start_method("spawn")
import multiprocessing

def parallel_matmul(x):
    R = np.random.randn(3, 3)
    return np.matmul(R, x)

if __name__ == '__main__':
    pool = multiprocessing.Pool(4)
    results = pool.map(parallel_matmul, [np.random.randn(3, 5000) for i in range(2)])
```

Ronald Oussoren: Good to know that perhaps upgrading to the latest OSX would resolve this issue. I tried 'spawn' and 'forkserver' with multiprocessing.set_start_method() (see above) but both result in an endless stream of errors (with or without importing a graphics backend), although that may be my not knowing how to properly use them.
History
Date User Action Args
2018-03-27 04:16:30ezweltysetrecipients: + ezwelty, terry.reedy, ronaldoussoren, ned.deily
2018-03-27 04:16:30ezweltysetmessageid: <1522124190.16.0.467229070634.issue33111@psf.upfronthosting.co.za>
2018-03-27 04:16:30ezweltylinkissue33111 messages
2018-03-27 04:16:29ezweltycreate