esd-services-api-client 2.5.3__py3-none-any.whl → 2.5.4__py3-none-any.whl
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.
- esd_services_api_client/__init__.py +1 -1
- esd_services_api_client/nexus/algorithms/forked_algorithm.py +6 -6
- {esd_services_api_client-2.5.3.dist-info → esd_services_api_client-2.5.4.dist-info}/METADATA +1 -1
- {esd_services_api_client-2.5.3.dist-info → esd_services_api_client-2.5.4.dist-info}/RECORD +6 -6
- {esd_services_api_client-2.5.3.dist-info → esd_services_api_client-2.5.4.dist-info}/LICENSE +0 -0
- {esd_services_api_client-2.5.3.dist-info → esd_services_api_client-2.5.4.dist-info}/WHEEL +0 -0
@@ -143,8 +143,13 @@ class ForkedAlgorithm(NexusObject[TPayload, AlgorithmResult]):
|
|
143
143
|
|
144
144
|
return await self._main_run(**run_args)
|
145
145
|
|
146
|
+
if self._is_forked(**kwargs):
|
147
|
+
self._inputs = await self._fork_inputs(**kwargs)
|
148
|
+
else:
|
149
|
+
self._inputs = await self._main_inputs(**kwargs)
|
150
|
+
|
146
151
|
# evaluate if additional forks will be spawned
|
147
|
-
forks = await self._get_forks
|
152
|
+
forks = await partial(self._get_forks, **self._inputs, **kwargs)()
|
148
153
|
|
149
154
|
if len(forks) > 0:
|
150
155
|
self._logger.info(
|
@@ -154,11 +159,6 @@ class ForkedAlgorithm(NexusObject[TPayload, AlgorithmResult]):
|
|
154
159
|
else:
|
155
160
|
self._logger.info("Leaf algorithm node: proceeding with this node run only")
|
156
161
|
|
157
|
-
if self._is_forked(**kwargs):
|
158
|
-
self._inputs = await self._fork_inputs(**kwargs)
|
159
|
-
else:
|
160
|
-
self._inputs = await self._main_inputs(**kwargs)
|
161
|
-
|
162
162
|
run_result = await partial(
|
163
163
|
_measured_run,
|
164
164
|
**self._inputs,
|
@@ -1,4 +1,4 @@
|
|
1
|
-
esd_services_api_client/__init__.py,sha256=
|
1
|
+
esd_services_api_client/__init__.py,sha256=OqC4BvvpuCqq2sdLwMTrnBpukF1nqdDDjPoTEYsYxOc,648
|
2
2
|
esd_services_api_client/beast/__init__.py,sha256=zNhXcHSP5w4P9quM1XP4oXVJEccvC_VScG41TZ0GzZ8,723
|
3
3
|
esd_services_api_client/beast/v3/__init__.py,sha256=FtumtInoDyCCRE424Llqv8QZLRuwXzj-smyfu1od1nc,754
|
4
4
|
esd_services_api_client/beast/v3/_connector.py,sha256=VqxiCzJWKERh42aZAIphzmOEG5cdOcKM0DQzG7eQ_-8,11479
|
@@ -26,7 +26,7 @@ esd_services_api_client/nexus/algorithms/__init__.py,sha256=yMvLFSqg5eUKOXI0zMFX
|
|
26
26
|
esd_services_api_client/nexus/algorithms/_baseline_algorithm.py,sha256=24ALLx4Bxlgi0EwZB1a0SJeEwBUWKj7CGad-CpIygU0,2925
|
27
27
|
esd_services_api_client/nexus/algorithms/_remote_algorithm.py,sha256=nQDQ2si-_-B2QdtBC8IwSM8YyNwfIhrCMto6g87BcnQ,3900
|
28
28
|
esd_services_api_client/nexus/algorithms/distributed.py,sha256=vkKSCsd480RKwrtu3uZ2iU1bh593fkgBcOBrcb9cLjA,1702
|
29
|
-
esd_services_api_client/nexus/algorithms/forked_algorithm.py,sha256=
|
29
|
+
esd_services_api_client/nexus/algorithms/forked_algorithm.py,sha256=IXgdt-d2qdAuRXCHtqNVHXVvvRbr8VaxoQWwlyIbzAw,5786
|
30
30
|
esd_services_api_client/nexus/algorithms/minimalistic.py,sha256=tSYXodIW-_Aje-_ZyYUoWAThcZIeE4_kMvMINsT4Lb8,1644
|
31
31
|
esd_services_api_client/nexus/algorithms/recursive.py,sha256=uaCCl4q-st_KqbcmkdOJedJ0nAjbJvn6jdZEdW0_0ss,2007
|
32
32
|
esd_services_api_client/nexus/configurations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -47,7 +47,7 @@ esd_services_api_client/nexus/input/payload_reader.py,sha256=Kq0xN1Shyqv71v6Ykcr
|
|
47
47
|
esd_services_api_client/nexus/telemetry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
48
48
|
esd_services_api_client/nexus/telemetry/recorder.py,sha256=j4x-wOSNZHkFco-ENlKtSm22d4WGHmuzKMnzvGQAtlQ,4849
|
49
49
|
esd_services_api_client/nexus/telemetry/user_telemetry_recorder.py,sha256=NOcb2l1SkMHinBXSrfbiBZSpufzhBWkuh3Px3NXrkcg,4997
|
50
|
-
esd_services_api_client-2.5.
|
51
|
-
esd_services_api_client-2.5.
|
52
|
-
esd_services_api_client-2.5.
|
53
|
-
esd_services_api_client-2.5.
|
50
|
+
esd_services_api_client-2.5.4.dist-info/LICENSE,sha256=0gS6zXsPp8qZhzi1xaGCIYPzb_0e8on7HCeFJe8fOpw,10693
|
51
|
+
esd_services_api_client-2.5.4.dist-info/METADATA,sha256=yz8gR67mWFjiWQG05AvG-FZfqtKSZhp40I0bvvdKgLc,1232
|
52
|
+
esd_services_api_client-2.5.4.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
53
|
+
esd_services_api_client-2.5.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|