Re: python multiprocessing

2017-10-09 Thread dieter
Xristos Xristoou writes: > I have three functions in the python that each one puts an image (image path) > as input and makes a simple image processing and creates a new image (image > path) as output. In order to make effective use of multiprocessing, you need to split your complete task into

Re: Python multiprocessing: Permission denied

2010-01-08 Thread t0ster
On Jan 6, 1:20 am, Steven D'Aprano wrote: > On Tue, 05 Jan 2010 13:52:18 -0800,t0sterwrote: > > It looks like the user don't have permission to access shared memory. > > When executing with root privileges it works fine. > > > Is there any solution to run it as normal user(not root)? > > Then give

Re: Python multiprocessing: Permission denied

2010-01-05 Thread Steven D'Aprano
On Tue, 05 Jan 2010 13:52:18 -0800, t0ster wrote: > It looks like the user don't have permission to access shared memory. > When executing with root privileges it works fine. > > Is there any solution to run it as normal user(not root)? Then give the user permission to access shared memory. Why