Parallel Computing Tools
Project description
This description is under construction.
Parallel Computing Tools (This is a tool to achieve clear and safe management of memory and other resources by separating parallel computations in units of files.)
並列計算ツール (ファイルの単位で並列計算を実施することで、メモリ等の管理を明快かつ安全に実現するツールです。)
- pythonの並列処理はメモリ管理がよくわからん (不安な気持ちになる)
- そこで、いっそのことファイルごと別プロセスで立ち上げるような並列処理を考えた
マスター側
from mult import master
input_ls = [i for i in range(10)]
output_ls = master.call(
"path_to_slave/slave.py", # スレーブファイル名
input_ls, # 入力のリスト (ジョブごと)
n = 4, # 並列数
job_order = "ordered", # ジョブ実行順序 (random, ordered)
progress = True # 進捗表示
)
print(output_ls) # 結果の確認
スレーブ側 (slave.py)
import time, random
from mult import slave
# 実行したい処理
def heavy_process(num):
time.sleep(random.random()*3)
return 2**num
num = slave.get_input()
result = heavy_process(num)
slave.send_output(result)
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
mult-1.1.0.tar.gz
(5.4 kB
view details)
Built Distribution
mult-1.1.0-py3-none-any.whl
(8.2 kB
view details)
File details
Details for the file mult-1.1.0.tar.gz
.
File metadata
- Download URL: mult-1.1.0.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0aec3218f78ffd399e4b37615a7c2a0c2023b868b54641b79113622def58a861 |
|
MD5 | 686ae4dfe62c3a606aa53c9136e8e9f7 |
|
BLAKE2b-256 | df4024303d3acc2bfc2cf954dc9ed49742c04449e5a1d53e99d89a108f5a3d31 |
File details
Details for the file mult-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: mult-1.1.0-py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b86265514d98bef74e1e8272571e21a2b9e6b95caef1709b3fcc759b8cd9ef5d |
|
MD5 | a3e6c37fd7ad04d4c7273ae4cc61a310 |
|
BLAKE2b-256 | 3d3c161eb2be124bc544987d4dc6a8f3a5b17a841f122c9fbe0813955a566b91 |