mpengine 0.1.1__tar.gz → 0.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mpengine-0.1.1/src/mpengine.egg-info → mpengine-0.1.2}/PKG-INFO +5 -9
- {mpengine-0.1.1 → mpengine-0.1.2}/README.md +4 -8
- {mpengine-0.1.1 → mpengine-0.1.2}/pyproject.toml +1 -1
- {mpengine-0.1.1 → mpengine-0.1.2}/src/mpengine/__init__.py +1 -1
- {mpengine-0.1.1 → mpengine-0.1.2/src/mpengine.egg-info}/PKG-INFO +5 -9
- {mpengine-0.1.1 → mpengine-0.1.2}/LICENSE +0 -0
- {mpengine-0.1.1 → mpengine-0.1.2}/setup.cfg +0 -0
- {mpengine-0.1.1 → mpengine-0.1.2}/src/mpengine/engine.py +0 -0
- {mpengine-0.1.1 → mpengine-0.1.2}/src/mpengine/orchestrator.py +0 -0
- {mpengine-0.1.1 → mpengine-0.1.2}/src/mpengine/partition.py +0 -0
- {mpengine-0.1.1 → mpengine-0.1.2}/src/mpengine/worker_names.json +0 -0
- {mpengine-0.1.1 → mpengine-0.1.2}/src/mpengine.egg-info/SOURCES.txt +0 -0
- {mpengine-0.1.1 → mpengine-0.1.2}/src/mpengine.egg-info/dependency_links.txt +0 -0
- {mpengine-0.1.1 → mpengine-0.1.2}/src/mpengine.egg-info/requires.txt +0 -0
- {mpengine-0.1.1 → mpengine-0.1.2}/src/mpengine.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mpengine
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: A small, general-purpose multiprocessing engine: dispatch any callable across processes with run manifests, per-worker logs, on-disk outputs and failure isolation
|
|
5
5
|
Author: Amandeep Singh
|
|
6
6
|
License-Expression: MIT
|
|
@@ -168,12 +168,8 @@ for triangular workloads — where item `i` costs `O(i)`, such as an
|
|
|
168
168
|
expanding-window computation — which keeps workers from idling while one
|
|
169
169
|
overloaded worker finishes.
|
|
170
170
|
|
|
171
|
-
##
|
|
171
|
+
## What else is in the repo
|
|
172
172
|
|
|
173
|
-
The
|
|
174
|
-
|
|
175
|
-
`mpengine`
|
|
176
|
-
|
|
177
|
-
The `src/learning/` package in this repo holds the exercises the engine grew out
|
|
178
|
-
of. It depends on a separate private project and is deliberately **not**
|
|
179
|
-
packaged — installing `mpengine` elsewhere never pulls it in.
|
|
173
|
+
The `src/learning/` package holds demo and exercise scripts used while
|
|
174
|
+
developing the engine. It depends on a separate private project and is
|
|
175
|
+
deliberately **not** packaged — installing `mpengine` never pulls it in.
|
|
@@ -139,12 +139,8 @@ for triangular workloads — where item `i` costs `O(i)`, such as an
|
|
|
139
139
|
expanding-window computation — which keeps workers from idling while one
|
|
140
140
|
overloaded worker finishes.
|
|
141
141
|
|
|
142
|
-
##
|
|
142
|
+
## What else is in the repo
|
|
143
143
|
|
|
144
|
-
The
|
|
145
|
-
|
|
146
|
-
`mpengine`
|
|
147
|
-
|
|
148
|
-
The `src/learning/` package in this repo holds the exercises the engine grew out
|
|
149
|
-
of. It depends on a separate private project and is deliberately **not**
|
|
150
|
-
packaged — installing `mpengine` elsewhere never pulls it in.
|
|
144
|
+
The `src/learning/` package holds demo and exercise scripts used while
|
|
145
|
+
developing the engine. It depends on a separate private project and is
|
|
146
|
+
deliberately **not** packaged — installing `mpengine` never pulls it in.
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "mpengine"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.2"
|
|
8
8
|
description = "A small, general-purpose multiprocessing engine: dispatch any callable across processes with run manifests, per-worker logs, on-disk outputs and failure isolation"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mpengine
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: A small, general-purpose multiprocessing engine: dispatch any callable across processes with run manifests, per-worker logs, on-disk outputs and failure isolation
|
|
5
5
|
Author: Amandeep Singh
|
|
6
6
|
License-Expression: MIT
|
|
@@ -168,12 +168,8 @@ for triangular workloads — where item `i` costs `O(i)`, such as an
|
|
|
168
168
|
expanding-window computation — which keeps workers from idling while one
|
|
169
169
|
overloaded worker finishes.
|
|
170
170
|
|
|
171
|
-
##
|
|
171
|
+
## What else is in the repo
|
|
172
172
|
|
|
173
|
-
The
|
|
174
|
-
|
|
175
|
-
`mpengine`
|
|
176
|
-
|
|
177
|
-
The `src/learning/` package in this repo holds the exercises the engine grew out
|
|
178
|
-
of. It depends on a separate private project and is deliberately **not**
|
|
179
|
-
packaged — installing `mpengine` elsewhere never pulls it in.
|
|
173
|
+
The `src/learning/` package holds demo and exercise scripts used while
|
|
174
|
+
developing the engine. It depends on a separate private project and is
|
|
175
|
+
deliberately **not** packaged — installing `mpengine` never pulls it in.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|