lsst-ctrl-mpexec 30.0.0rc3__py3-none-any.whl → 30.2026.400__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.
- lsst/ctrl/mpexec/cli/opt/options.py +2 -1
- lsst/ctrl/mpexec/showInfo.py +10 -0
- lsst/ctrl/mpexec/version.py +1 -1
- {lsst_ctrl_mpexec-30.0.0rc3.dist-info → lsst_ctrl_mpexec-30.2026.400.dist-info}/METADATA +1 -1
- {lsst_ctrl_mpexec-30.0.0rc3.dist-info → lsst_ctrl_mpexec-30.2026.400.dist-info}/RECORD +13 -13
- {lsst_ctrl_mpexec-30.0.0rc3.dist-info → lsst_ctrl_mpexec-30.2026.400.dist-info}/WHEEL +1 -1
- {lsst_ctrl_mpexec-30.0.0rc3.dist-info → lsst_ctrl_mpexec-30.2026.400.dist-info}/entry_points.txt +0 -0
- {lsst_ctrl_mpexec-30.0.0rc3.dist-info → lsst_ctrl_mpexec-30.2026.400.dist-info}/licenses/COPYRIGHT +0 -0
- {lsst_ctrl_mpexec-30.0.0rc3.dist-info → lsst_ctrl_mpexec-30.2026.400.dist-info}/licenses/LICENSE +0 -0
- {lsst_ctrl_mpexec-30.0.0rc3.dist-info → lsst_ctrl_mpexec-30.2026.400.dist-info}/licenses/bsd_license.txt +0 -0
- {lsst_ctrl_mpexec-30.0.0rc3.dist-info → lsst_ctrl_mpexec-30.2026.400.dist-info}/licenses/gpl-v3.0.txt +0 -0
- {lsst_ctrl_mpexec-30.0.0rc3.dist-info → lsst_ctrl_mpexec-30.2026.400.dist-info}/top_level.txt +0 -0
- {lsst_ctrl_mpexec-30.0.0rc3.dist-info → lsst_ctrl_mpexec-30.2026.400.dist-info}/zip-safe +0 -0
|
@@ -322,7 +322,8 @@ show_option = MWOptionDecorator(
|
|
|
322
322
|
show subset labels and associated tasks; ``uri`` to show
|
|
323
323
|
predicted dataset URIs of quanta; ``pipeline-graph`` for a
|
|
324
324
|
text-based visualization of the pipeline (tasks and dataset types);
|
|
325
|
-
``task-graph`` for a text-based visualization of just the tasks
|
|
325
|
+
``task-graph`` for a text-based visualization of just the tasks;
|
|
326
|
+
``inputs`` for a list of overall-input dataset types.
|
|
326
327
|
With -b, pipeline-graph and task-graph include additional information.
|
|
327
328
|
"""
|
|
328
329
|
),
|
lsst/ctrl/mpexec/showInfo.py
CHANGED
|
@@ -113,6 +113,7 @@ class ShowInfo:
|
|
|
113
113
|
"pipeline-graph",
|
|
114
114
|
"task-graph",
|
|
115
115
|
"subsets",
|
|
116
|
+
"inputs",
|
|
116
117
|
}
|
|
117
118
|
graph_commands = {"graph", "workflow", "uri"}
|
|
118
119
|
|
|
@@ -186,6 +187,15 @@ class ShowInfo:
|
|
|
186
187
|
visualization.show(
|
|
187
188
|
pipeline_graph_factory(visualization_only=True), self.stream, dataset_types=False
|
|
188
189
|
)
|
|
190
|
+
case "inputs":
|
|
191
|
+
pg = pipeline_graph_factory(visualization_only=True)
|
|
192
|
+
for dataset_type_name, dataset_type_node in sorted(pg.iter_overall_inputs()):
|
|
193
|
+
assert dataset_type_node is not None, "Pipeline graph was just resolved."
|
|
194
|
+
print(
|
|
195
|
+
dataset_type_name,
|
|
196
|
+
dataset_type_node.dimensions,
|
|
197
|
+
dataset_type_node.storage_class_name,
|
|
198
|
+
)
|
|
189
199
|
case _:
|
|
190
200
|
raise RuntimeError(f"Unexpectedly tried to process command {command!r}.")
|
|
191
201
|
self.handled.add(command)
|
lsst/ctrl/mpexec/version.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
__all__ = ["__version__"]
|
|
2
|
-
__version__ = "30.
|
|
2
|
+
__version__ = "30.2026.400"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lsst-ctrl-mpexec
|
|
3
|
-
Version: 30.
|
|
3
|
+
Version: 30.2026.400
|
|
4
4
|
Summary: Pipeline execution infrastructure for the Rubin Observatory LSST Science Pipelines.
|
|
5
5
|
Author-email: Rubin Observatory Data Management <dm-admin@lists.lsst.org>
|
|
6
6
|
License-Expression: BSD-3-Clause OR GPL-3.0-or-later
|
|
@@ -11,12 +11,12 @@ lsst/ctrl/mpexec/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
11
11
|
lsst/ctrl/mpexec/quantumGraphExecutor.py,sha256=7LCoqsmNSWUJ1ph1bfgrVrpk5Ug5ArzniFkqcxgjfhI,2106
|
|
12
12
|
lsst/ctrl/mpexec/reports.py,sha256=EvHjW9wdjfN1lj4DQH634oJ9zv3wYKySvJ_UtFDtNHY,2460
|
|
13
13
|
lsst/ctrl/mpexec/separablePipelineExecutor.py,sha256=yHymF9jSthVCl_230TzRqQrcAmohSgR7Me8YAbMazM8,1818
|
|
14
|
-
lsst/ctrl/mpexec/showInfo.py,sha256=
|
|
14
|
+
lsst/ctrl/mpexec/showInfo.py,sha256=HUn0f59jSxauQ_cLZtjzlhihuX5yl_0ODXHJPG22YYQ,18145
|
|
15
15
|
lsst/ctrl/mpexec/simple_pipeline_executor.py,sha256=aVWgOds0ILCTzXdrWy0KFyjcIuqw6cNq8alAJeZd8AE,1797
|
|
16
16
|
lsst/ctrl/mpexec/singleQuantumExecutor.py,sha256=KnghvHDWqamrI3pmdH4GdpNQBVx3IBa3i0fLmUG978M,9102
|
|
17
17
|
lsst/ctrl/mpexec/taskFactory.py,sha256=0TdCM-le7CXhobVbWPTqcq9sOrGceUY6mmkzzWhi0dM,1707
|
|
18
18
|
lsst/ctrl/mpexec/util.py,sha256=y2Rw5PL40_EuLtVxiqSVX0JfPV4IrFl1LfOMUWx2u30,4236
|
|
19
|
-
lsst/ctrl/mpexec/version.py,sha256=
|
|
19
|
+
lsst/ctrl/mpexec/version.py,sha256=hP_T_OdeRTp5aTn88qE2-hdMB5_ZS6XI0kw3PpLsuXM,54
|
|
20
20
|
lsst/ctrl/mpexec/cli/__init__.py,sha256=6dpDHNBzyicVpFi1fsaiYVbYEMeoL57IHKkPaej24gs,1301
|
|
21
21
|
lsst/ctrl/mpexec/cli/butler_factory.py,sha256=nx22v4vsD7GglgQ7D0Nf6o3NONcyQvecCruN_neEaCw,24365
|
|
22
22
|
lsst/ctrl/mpexec/cli/pipetask.py,sha256=4HnhX9dCizCihVbpHVJX5WXO9TEli9oL6wA-tPh1_vA,2209
|
|
@@ -26,7 +26,7 @@ lsst/ctrl/mpexec/cli/cmd/commands.py,sha256=uCnIaFzHhTAt1Onvhp_evPVWlikB6OBMRU7P
|
|
|
26
26
|
lsst/ctrl/mpexec/cli/opt/__init__.py,sha256=IzUInuJj9igiaNcEqMx0adelgJtQC5_XMYnaiizBn0A,1378
|
|
27
27
|
lsst/ctrl/mpexec/cli/opt/arguments.py,sha256=vjUw0ZN_4HStp-_3ne6AT5S_eH7sly3OVfL07tgrJnY,1572
|
|
28
28
|
lsst/ctrl/mpexec/cli/opt/optionGroups.py,sha256=9UrFUWlkiBaAO2WDE0rKokAEXK-dm-SmBPyapY6B7t8,8622
|
|
29
|
-
lsst/ctrl/mpexec/cli/opt/options.py,sha256=
|
|
29
|
+
lsst/ctrl/mpexec/cli/opt/options.py,sha256=9XmRYqkoBwOdRiR8JMFgZiAWz7_yVKkRCfND5SceJIQ,19537
|
|
30
30
|
lsst/ctrl/mpexec/cli/script/__init__.py,sha256=eCuF4FAI5D3pl05IMJj7TCkZq-hireua2mA5Ui-mKSI,1624
|
|
31
31
|
lsst/ctrl/mpexec/cli/script/build.py,sha256=t0je-RkHCKhaL0JAeNTRRGPnluD-blDUaENVtJyd2z8,7003
|
|
32
32
|
lsst/ctrl/mpexec/cli/script/cleanup.py,sha256=lf6Tn_875b35a58A_dbweRDZujqVqB-uRSHIQGbv0OI,5071
|
|
@@ -38,13 +38,13 @@ lsst/ctrl/mpexec/cli/script/report.py,sha256=RCy8KcOqijYmKlzaeIYT34FrbgFgqoFJdrK
|
|
|
38
38
|
lsst/ctrl/mpexec/cli/script/run.py,sha256=rb3GAPksZi2b5YG1LPsqgDwugEqgIeLbRZGojm5yUMc,14385
|
|
39
39
|
lsst/ctrl/mpexec/cli/script/run_qbb.py,sha256=W1MvzoUBKvHNx17s1dvyGXaC7C5uGvbvDrF9meXbvok,10855
|
|
40
40
|
lsst/ctrl/mpexec/cli/script/update_graph_run.py,sha256=2b0Q0j5yPC4bWxq0tsd4et2VmOnu-dQLQa94340z78Y,2623
|
|
41
|
-
lsst_ctrl_mpexec-30.
|
|
42
|
-
lsst_ctrl_mpexec-30.
|
|
43
|
-
lsst_ctrl_mpexec-30.
|
|
44
|
-
lsst_ctrl_mpexec-30.
|
|
45
|
-
lsst_ctrl_mpexec-30.
|
|
46
|
-
lsst_ctrl_mpexec-30.
|
|
47
|
-
lsst_ctrl_mpexec-30.
|
|
48
|
-
lsst_ctrl_mpexec-30.
|
|
49
|
-
lsst_ctrl_mpexec-30.
|
|
50
|
-
lsst_ctrl_mpexec-30.
|
|
41
|
+
lsst_ctrl_mpexec-30.2026.400.dist-info/licenses/COPYRIGHT,sha256=pGCjnRAnyt02a6_9PLzXQikpvYmvMmK9fCdOKlRSV6k,369
|
|
42
|
+
lsst_ctrl_mpexec-30.2026.400.dist-info/licenses/LICENSE,sha256=pRExkS03v0MQW-neNfIcaSL6aiAnoLxYgtZoFzQ6zkM,232
|
|
43
|
+
lsst_ctrl_mpexec-30.2026.400.dist-info/licenses/bsd_license.txt,sha256=7MIcv8QRX9guUtqPSBDMPz2SnZ5swI-xZMqm_VDSfxY,1606
|
|
44
|
+
lsst_ctrl_mpexec-30.2026.400.dist-info/licenses/gpl-v3.0.txt,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
45
|
+
lsst_ctrl_mpexec-30.2026.400.dist-info/METADATA,sha256=KHh8rh6UA9GaLiWTeFnXX8BF2ZpoF8TJmLdbmrOVpog,2324
|
|
46
|
+
lsst_ctrl_mpexec-30.2026.400.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
|
|
47
|
+
lsst_ctrl_mpexec-30.2026.400.dist-info/entry_points.txt,sha256=aYE38yqZU8qvpLUUkXzgmUxDJYYknEqPxgxYkowrL4s,64
|
|
48
|
+
lsst_ctrl_mpexec-30.2026.400.dist-info/top_level.txt,sha256=eUWiOuVVm9wwTrnAgiJT6tp6HQHXxIhj2QSZ7NYZH80,5
|
|
49
|
+
lsst_ctrl_mpexec-30.2026.400.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
50
|
+
lsst_ctrl_mpexec-30.2026.400.dist-info/RECORD,,
|
{lsst_ctrl_mpexec-30.0.0rc3.dist-info → lsst_ctrl_mpexec-30.2026.400.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{lsst_ctrl_mpexec-30.0.0rc3.dist-info → lsst_ctrl_mpexec-30.2026.400.dist-info}/licenses/COPYRIGHT
RENAMED
|
File without changes
|
{lsst_ctrl_mpexec-30.0.0rc3.dist-info → lsst_ctrl_mpexec-30.2026.400.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{lsst_ctrl_mpexec-30.0.0rc3.dist-info → lsst_ctrl_mpexec-30.2026.400.dist-info}/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|