Re: [Pytables-users] PyTables and Multiprocessing

2013-07-11 Thread Mathieu Dubois
Le 11/07/2013 21:56, Anthony Scopatz a écrit : On Thu, Jul 11, 2013 at 2:49 PM, Mathieu Dubois duboismathieu_g...@yahoo.fr mailto:duboismathieu_g...@yahoo.fr wrote: Hello, I wanted to use PyTables in conjunction with multiprocessing for some embarrassingly parallel tasks.

Re: [Pytables-users] PyTables and Multiprocessing

2013-07-11 Thread Anthony Scopatz
Hi Mathieu, I think you should try opening a new file handle per process. The following works for me on v3.0: import tables import random import multiprocessing # Reload the data # Use multiprocessing to perform a simple computation (column average) def f(filename): h5file =