Top "Multiprocessing" questions

Multiprocessing is the use of two or more central processing units (CPUs) within a single computer system.

Gevent multicore usage

I'm just started with python gevent and I was wondering about the cpu / mulitcore usage of the library. Trying some …

python multiprocessing gevent
Using python multiprocessing pipes

I am trying to write a class that will calculate checksums using multiple processes, thereby taking advantage of multiple cores. …

python multiprocessing pipe python-2.6
What is the cleanest way to stop a python multiprocessing worker attached to a queue in an infinite loop?

I'm implementing a producer-consumer pattern in python using multiprocessing.Pool and multiprocessing.Queue. Consumers are pre-forked processes that uses gevent …

python multiprocessing gevent defunct
parallelize 'for' loop in Python 3

I am trying to do some analysis of the MODIS satellite data. My code primarily reads a lot of files (806) …

python python-3.x multiprocessing python-multiprocessing python-multithreading
EOFError: Ran out of input inside a class

I have the following code where I need to read multiple sensors at a time. I have set up threading …

python multiprocessing python-multiprocessing
how do I use key word arguments with python multiprocessing pool apply_async

I'm trying to get to grips with pythons multiprocessing module, specifically the apply_async method of Pool. I'm trying to …

python multiprocessing threadpool
combining python watchdog with multiprocessing or threading

I'm using Python's Watchdog to monitor a given directory for new files being created. When a file is created, some …

python multiprocessing python-multithreading watchdog
multiprocessing queue full

I'm using concurrent.futures to implement multiprocessing. I am getting a queue.Full error, which is odd because I am …

python parallel-processing multiprocessing concurrent.futures
Which scripting languages support multi-core programming?

I have written a little python application and here you can see how Task Manager looks during a typical run. (…

multithreading multiprocessing multicore green-threads
How to do proper file locking on NFS?

I am trying to implement a "record manager" class in python 3x and linux/macOS. The class is relatively easy …

python linux multiprocessing locking nfs