Skip to main content

a simple python module to solve problem in a multiprocessing way.

Project description

mptrolley

a simple python module to solve problem in a multiprocessing way.

background

there are many jobs which are processed in batches. for example, in many computing tasks, you may need to run a same algorithm on many groups of different input data, and the "subproblems" are often irrelevant with each other. in this case, multiprocessing is a very simple and understandable way to accelerate. so we designed a very simple python module called mptrolley under the principle of KISS (Keep It Simple and Stupid).

terminology

problem and questions

in this passage, we define that a batched job is called a problem. in a single problem, there are may questions, and each question has a continuous numbering (begins from zero). we assume that you have already write a python function to solve a single question:

def question_function(question_index, common_context):
  ...

and we assume that you can solve your problem without any parallel in the following way:

common = ...
for i in range(question_count): # the questions should be numbered from 0 to (question_count-1)
  question_function(i, common)

in this case, mptrolley provides you a simple way to solve the problem faster with multiprocessing:

import mptrolley
common        = ...
process_count = ... # an interger to control the number of processes
mptrolley.solve_problem_with_multiprocessing(question_function, common, question_count, process_count)

the question list will be devided into process_count lists according to question_index % process_count. for some question qx and some process px, px will be used to solve qx if and only if qx.question_index % process_count == px.process_index.

install from github release

  1. go https://github.com/GGN-2015/mptrolley/releases and download a .whl file.
  2. use pip install mptrolley-<version>-py3-none-any.whl to install the package into your local environment.

install from pypi

pip install mptrolley

usage

import mptrolley

# define your own question function, it **MUST** have two parameters
#   question_index will be given a continuous integer index.
#   and common_context is the common information you may need during every question's solving procedure.
#   (there are many cases where we just don't need it.)
def question_function(question_index, common_context) -> None:
  ...

common        = ... # common information
process_count = ... # an interger to control the number of processes
mptrolley.solve_problem_with_multiprocessing(question_function, common, question_count, process_count)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mptrolley-0.0.3.tar.gz (4.7 kB view details)

Uploaded Source

Built Distribution

mptrolley-0.0.3-py3-none-any.whl (5.8 kB view details)

Uploaded Python 3

File details

Details for the file mptrolley-0.0.3.tar.gz.

File metadata

  • Download URL: mptrolley-0.0.3.tar.gz
  • Upload date:
  • Size: 4.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for mptrolley-0.0.3.tar.gz
Algorithm Hash digest
SHA256 c8d47f6993c2d7b9d64a74daf25d562d378ded3852ff12de31ff8cb3cdb9bfc9
MD5 58c732608def449d1aacddb82d211464
BLAKE2b-256 36b01d956891ef82d949a61fc37687288a28c2e4db0a78b3a2e491b047b0e7e6

See more details on using hashes here.

File details

Details for the file mptrolley-0.0.3-py3-none-any.whl.

File metadata

  • Download URL: mptrolley-0.0.3-py3-none-any.whl
  • Upload date:
  • Size: 5.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for mptrolley-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 5480bf52a50cad638d1caba614ce1a045c8c3a9ba5690bf012140764e69159b0
MD5 7fe6289810772d89b884eead732dfec5
BLAKE2b-256 a95fac5889bc5dd05732f9f469d19dee2cc948349ddf8877108abc4c2f81d4be

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page