IQOQO multi-processing python package


Licenses
GPL-3.0+/OML
Install
pip install iqoqomp==1.2.2

Documentation

IQOQO

iqoqomp

IQOQO multi-processing python package

The iqoqomp is a package that distributes computing jobs using the IQOQO service. It introduces an API similar to the multiprocessing python package.

For more information about IQOQO itself, please check out the IQOQO homepage

Overview

class iqoqomp.Process(name, target, args=())

Instantiating the Process class creates a new job with a single task in a 'waiting state' and submits it to iqoqo computing service

name

The job's name. The name is a string used for identification purposes only. It does not have to be unique.

target

The target is the callable object to be invoked by the running job.

args

The args is the argument tuple for the target invocation. By default, no arguments are passed to target.

start()

Start running the job on one of the machines .

This must be called at most once per process object.

join(timeout=None)

Join blocks the calling thread until the job is done. Upon successful completion of the job, results files are downloaded to a new directory, given the job's name within the working directory.

Currently, timeout must always be 'None'.

A process should be joined at most once. A job may be already done by the time join was called. However, the results are downloaded only upon calling join.

class iqoqomp.Pool(processes=None)

Instantiating the Pool class creates and object to be later used to run a job with one or more tasks executed in many machines, by invoking it's map() method. The Pool class does not take any arguments and has a no control on the number of machines used to run the job tasks. The number of machines are determined separately.

map(func, iterable, chunksize=None)

  1. Pool.map applies the same function to many sets of arguments.
  2. It creates a job that runs each set of arguments as a separate task on one of the machines in the "pool".
  3. It blocks until the result is ready (i.e. all job's tasks are done).
  4. The results are returned back in the original order (corresponding to the order of the arguments).
  5. Job related files (in addition to script, input, config files that were used to run the task) are downloaded automatically when the job is done under a directory named as the function's name, within the working directory.
  6. The function's arguments should be provided an iterable.

starmap(func, iterable, chunksize=None)

  1. Pool.starmap is similar to Pool.map but it can apply the same function to many sets of multiple arguments.
  2. The function's arguments should be provided an iterable. Elements of the iterable are expected to be iterables as well that are unpacked as arguments. Hence an iterable of [(1,2), (3, 4)] results in [func(1,2), func(3,4)].

Installation:

  1. Install IQOQO CLI:
 curl https://s3.us-east-2.amazonaws.com/iqoqo.cli/install.sh | sh
  1. Sign-Up in IQOQO dashboard:

    https://app.iqoqo.co/signup

  2. Install iqoqomp package:

 pip install iqoqomp

or

 pip3 install iqoqomp

Usage:

  1. You keep writing your python script as if you were using the multiprocessing package, but instead of importing the process and pool modules from multiprocessing, you import them from iqoqomp.
  2. Setup the environment variables with your IQOQO account's user-name and password (see the examples below).

Examples:

A trivial example using the Process class:

import os
from iqoqomp import Process

os.environ['IQOQO_LOGIN_USER'] = 'username@mail.com'
os.environ['IQOQO_LOGIN_PASSWORD'] = 'password'

def func(name):
    print ('Hello', name)

p = Process(
    name='MyFirstJobExample',
    target=func,
    args=('Bob',))

p.start()
p.join()

Output:

Process

A basic example using the Pool class:

import os
from iqoqomp import Pool

os.environ['IQOQO_LOGIN_USER'] = 'username@mail.com'
os.environ['IQOQO_LOGIN_PASSWORD'] = 'password'

def pow3(x):
    print (x**3)
    return (x**3)
    
p = Pool()
results = p.map(pow3, range(10))
print(results)

Output:

Process

Contact us:

Please feel free to contact us in IQOQO for further information