Skip to main content

a little framework to simule multiprocessing over a lot of computers

Project description

import random
import org.py4grid.GP as gp


def testando(lista):
for x in range(2 * 1):
lista.append(random.random())
return lista


if __name__ == '__main__':

from multiprocessing.dummy import Pool as pool
remote = gp.RemoteProcess(pool, file=__file__, discover_hosts=True)

ret = remote.processwork(__file__, testando, [[], [], [], []],
relative_path={'Darwin': '/Dropbox/BIBLIOTECA_PYTHON', 'Linux': '/Dropbox/BIBLIOTECA_PYTHON'},
Hosts=[('localhost', 4680)])

for item in ret:
for sub in item:
print(len(sub), sub)




before use this framework,
starts PY4GRIDSERVER generated in PythonXX\Script directory for begin a server
and then start DISCOVER if you want to use the option discover_hosts, this option works discovering the address of the servers started
and only works if the Hosts argument is empty, if you do not wish to use this option must explicitly pass the argument Hosts

example:

C:\Python33\Script\PY4GRIDSERVER <- starts the server on port 4680
C:\Python33\Script\DISCOVER <- start the discoverer of servers

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

PY4GRID-1.0.2.zip (18.1 kB view hashes)

Uploaded Source

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