hpc-runner 0.3.0__py3-none-any.whl → 0.3.2__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.
- hpc_runner/_version.py +2 -2
- hpc_runner/cli/config.py +2 -2
- hpc_runner/cli/main.py +8 -3
- hpc_runner/cli/run.py +24 -9
- hpc_runner/cli/status.py +0 -1
- hpc_runner/cli/submit.py +0 -2
- hpc_runner/core/config.py +8 -2
- hpc_runner/core/descriptors.py +9 -3
- hpc_runner/core/job.py +6 -5
- hpc_runner/core/job_array.py +2 -1
- hpc_runner/core/resources.py +2 -1
- hpc_runner/schedulers/__init__.py +2 -2
- hpc_runner/schedulers/base.py +31 -17
- hpc_runner/schedulers/local/scheduler.py +103 -190
- hpc_runner/schedulers/local/templates/job.sh.j2 +17 -4
- hpc_runner/schedulers/sge/args.py +14 -14
- hpc_runner/schedulers/sge/parser.py +4 -4
- hpc_runner/schedulers/sge/scheduler.py +76 -78
- hpc_runner/schedulers/sge/templates/batch.sh.j2 +0 -5
- hpc_runner/schedulers/sge/templates/interactive.sh.j2 +0 -5
- hpc_runner/tui/app.py +14 -25
- hpc_runner/tui/components/filter_bar.py +2 -4
- hpc_runner/tui/components/filter_popup.py +13 -8
- hpc_runner/tui/components/job_table.py +5 -9
- hpc_runner/tui/providers/jobs.py +3 -5
- hpc_runner/tui/screens/confirm.py +3 -1
- hpc_runner/tui/screens/log_viewer.py +1 -3
- hpc_runner/tui/snapshot.py +7 -5
- hpc_runner/workflow/pipeline.py +2 -1
- {hpc_runner-0.3.0.dist-info → hpc_runner-0.3.2.dist-info}/METADATA +7 -5
- hpc_runner-0.3.2.dist-info/RECORD +57 -0
- hpc_runner-0.3.0.dist-info/RECORD +0 -57
- {hpc_runner-0.3.0.dist-info → hpc_runner-0.3.2.dist-info}/WHEEL +0 -0
- {hpc_runner-0.3.0.dist-info → hpc_runner-0.3.2.dist-info}/entry_points.txt +0 -0
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
+
from typing import Any
|
|
6
|
+
|
|
5
7
|
from textual.app import ComposeResult
|
|
6
8
|
from textual.containers import Horizontal, Vertical
|
|
7
9
|
from textual.screen import ModalScreen
|
|
@@ -31,7 +33,7 @@ class ConfirmScreen(ModalScreen[bool]):
|
|
|
31
33
|
message: str,
|
|
32
34
|
title: str = "Confirm",
|
|
33
35
|
confirm_label: str = "Confirm",
|
|
34
|
-
**kwargs,
|
|
36
|
+
**kwargs: Any,
|
|
35
37
|
) -> None:
|
|
36
38
|
super().__init__(**kwargs)
|
|
37
39
|
self._message = message
|
|
@@ -11,7 +11,6 @@ from textual.containers import Vertical
|
|
|
11
11
|
from textual.screen import ModalScreen
|
|
12
12
|
from textual.widgets import Static, TextArea
|
|
13
13
|
|
|
14
|
-
|
|
15
14
|
# Maximum lines to read from large files
|
|
16
15
|
MAX_LINES = 5000
|
|
17
16
|
|
|
@@ -133,8 +132,7 @@ class LogViewerScreen(ModalScreen[None]):
|
|
|
133
132
|
chunk_lines = chunk.split(b"\n")
|
|
134
133
|
remaining = chunk_lines[0]
|
|
135
134
|
lines = [
|
|
136
|
-
line.decode("utf-8", errors="replace")
|
|
137
|
-
for line in chunk_lines[1:]
|
|
135
|
+
line.decode("utf-8", errors="replace") for line in chunk_lines[1:]
|
|
138
136
|
] + lines
|
|
139
137
|
|
|
140
138
|
# Add any remaining content
|
hpc_runner/tui/snapshot.py
CHANGED
|
@@ -11,10 +11,12 @@ import asyncio
|
|
|
11
11
|
import sys
|
|
12
12
|
from pathlib import Path
|
|
13
13
|
|
|
14
|
+
from textual.color import Color
|
|
15
|
+
|
|
14
16
|
from .app import HpcMonitorApp
|
|
15
17
|
|
|
16
18
|
|
|
17
|
-
def _is_transparent(color) -> bool:
|
|
19
|
+
def _is_transparent(color: Color | None) -> bool:
|
|
18
20
|
"""Check if a color is transparent."""
|
|
19
21
|
if color is None:
|
|
20
22
|
return True
|
|
@@ -25,14 +27,14 @@ def _is_transparent(color) -> bool:
|
|
|
25
27
|
return False
|
|
26
28
|
|
|
27
29
|
|
|
28
|
-
def _color_hex(color) -> str:
|
|
30
|
+
def _color_hex(color: Color | None) -> str:
|
|
29
31
|
"""Convert color to hex string for display."""
|
|
30
32
|
if color is None:
|
|
31
33
|
return "None"
|
|
32
34
|
if hasattr(color, "ansi") and color.ansi == -1:
|
|
33
35
|
return "ANSI_DEFAULT (transparent)"
|
|
34
36
|
if color.a == 0:
|
|
35
|
-
return
|
|
37
|
+
return "transparent (a=0)"
|
|
36
38
|
return f"#{color.r:02x}{color.g:02x}{color.b:02x}"
|
|
37
39
|
|
|
38
40
|
|
|
@@ -43,7 +45,7 @@ async def capture_and_review() -> bool:
|
|
|
43
45
|
True if all checks pass, False otherwise.
|
|
44
46
|
"""
|
|
45
47
|
from textual.containers import HorizontalGroup
|
|
46
|
-
from textual.widgets import
|
|
48
|
+
from textual.widgets import Header, Tab, TabbedContent
|
|
47
49
|
|
|
48
50
|
app = HpcMonitorApp()
|
|
49
51
|
all_passed = True
|
|
@@ -143,7 +145,7 @@ async def capture_and_review() -> bool:
|
|
|
143
145
|
return all_passed
|
|
144
146
|
|
|
145
147
|
|
|
146
|
-
def main():
|
|
148
|
+
def main() -> None:
|
|
147
149
|
"""Run snapshot review."""
|
|
148
150
|
passed = asyncio.run(capture_and_review())
|
|
149
151
|
sys.exit(0 if passed else 1)
|
hpc_runner/workflow/pipeline.py
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
+
from collections.abc import Iterator
|
|
5
6
|
from dataclasses import dataclass, field
|
|
6
7
|
from typing import TYPE_CHECKING, Any
|
|
7
8
|
|
|
@@ -176,5 +177,5 @@ class Pipeline:
|
|
|
176
177
|
def __len__(self) -> int:
|
|
177
178
|
return len(self.jobs)
|
|
178
179
|
|
|
179
|
-
def __iter__(self):
|
|
180
|
+
def __iter__(self) -> Iterator[PipelineJob]:
|
|
180
181
|
return iter(self.jobs)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hpc-runner
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: Unified HPC job submission across multiple schedulers
|
|
5
5
|
Project-URL: Homepage, https://github.com/sjalloq/hpc-runner
|
|
6
6
|
Project-URL: Repository, https://github.com/sjalloq/hpc-runner
|
|
@@ -28,22 +28,24 @@ Provides-Extra: all
|
|
|
28
28
|
Requires-Dist: build; extra == 'all'
|
|
29
29
|
Requires-Dist: furo>=2024.0.0; extra == 'all'
|
|
30
30
|
Requires-Dist: hatch-vcs; extra == 'all'
|
|
31
|
-
Requires-Dist: mypy; extra == 'all'
|
|
31
|
+
Requires-Dist: mypy>=1.19; extra == 'all'
|
|
32
|
+
Requires-Dist: pre-commit; extra == 'all'
|
|
32
33
|
Requires-Dist: pytest-asyncio; extra == 'all'
|
|
33
34
|
Requires-Dist: pytest-cov; extra == 'all'
|
|
34
35
|
Requires-Dist: pytest>=7.0; extra == 'all'
|
|
35
|
-
Requires-Dist: ruff; extra == 'all'
|
|
36
|
+
Requires-Dist: ruff>=0.15; extra == 'all'
|
|
36
37
|
Requires-Dist: sphinx>=7.0; extra == 'all'
|
|
37
38
|
Requires-Dist: twine; extra == 'all'
|
|
38
39
|
Provides-Extra: dev
|
|
39
40
|
Requires-Dist: build; extra == 'dev'
|
|
40
41
|
Requires-Dist: furo>=2024.0.0; extra == 'dev'
|
|
41
42
|
Requires-Dist: hatch-vcs; extra == 'dev'
|
|
42
|
-
Requires-Dist: mypy; extra == 'dev'
|
|
43
|
+
Requires-Dist: mypy>=1.19; extra == 'dev'
|
|
44
|
+
Requires-Dist: pre-commit; extra == 'dev'
|
|
43
45
|
Requires-Dist: pytest-asyncio; extra == 'dev'
|
|
44
46
|
Requires-Dist: pytest-cov; extra == 'dev'
|
|
45
47
|
Requires-Dist: pytest>=7.0; extra == 'dev'
|
|
46
|
-
Requires-Dist: ruff; extra == 'dev'
|
|
48
|
+
Requires-Dist: ruff>=0.15; extra == 'dev'
|
|
47
49
|
Requires-Dist: sphinx>=7.0; extra == 'dev'
|
|
48
50
|
Requires-Dist: twine; extra == 'dev'
|
|
49
51
|
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
hpc_runner/__init__.py,sha256=1xnewzCt8FVqseOG5PRmLbiMz0I8V8_TrTyIjW0Q8_A,1414
|
|
2
|
+
hpc_runner/_version.py,sha256=e8NqPtZ8fggRgk3GPrqZ_U_BDV8aSULw1u_Gn9NNbnk,704
|
|
3
|
+
hpc_runner/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
hpc_runner/cli/__init__.py,sha256=qF_2phBjYZc_rHCyJeZevCvbOCfXQbLCwb-DY5mJNUo,26
|
|
5
|
+
hpc_runner/cli/cancel.py,sha256=8qRkPjlSGs6OGs7-_ilwpUlWpGQe7ch8aB_rEWiiLAI,901
|
|
6
|
+
hpc_runner/cli/config.py,sha256=FKbH4YPU77HzLy2ZTPgtjjgRfrz4lWQohMNG6F_BGaw,3056
|
|
7
|
+
hpc_runner/cli/main.py,sha256=VHspQSP0g-Hob3qAI1uTQgl2Idv8BCSmW5IvOzYd0Vw,2496
|
|
8
|
+
hpc_runner/cli/monitor.py,sha256=aqr39IqwEUz_eczDLMw1dyfs_Gz6mtqKM2eMHI80f4g,698
|
|
9
|
+
hpc_runner/cli/run.py,sha256=tvZHqS2ZqOqee6-kPixuaBbrDaEXLjn-M4gaz2-R1X0,9753
|
|
10
|
+
hpc_runner/cli/status.py,sha256=pPnVOMmaXrc7oI_0KskrDgxTxLNdSoLJm2_qxczhGyM,1956
|
|
11
|
+
hpc_runner/cli/submit.py,sha256=mYhIyATqQRZO5LrtGdk4h5tXBnmZUnKXlRsVpDEu_DU,1980
|
|
12
|
+
hpc_runner/core/__init__.py,sha256=dSAYl2aizg-ZpOdD5BfFqd_UWp_9KmVDpRTRzNTn2u8,644
|
|
13
|
+
hpc_runner/core/config.py,sha256=9NP42vjSZq570mB80BjAETWjAVokGKrbmSDkuhvSiE4,5492
|
|
14
|
+
hpc_runner/core/descriptors.py,sha256=yzCQUidTb921NrN7VsOGbDt8HNbSLrc7ujaU_jF6EuY,3505
|
|
15
|
+
hpc_runner/core/exceptions.py,sha256=i7DZoEMYl0MrsT9-6Z0ebrsP3YOLA_6B5THz0LgmNN8,891
|
|
16
|
+
hpc_runner/core/job.py,sha256=AIfAWvXB7B-DIsewx4k4fo26ztcVje44onPw1NNI9qQ,11290
|
|
17
|
+
hpc_runner/core/job_array.py,sha256=eSz6h2DQVM0mQ09JD-JBtJ42yyJDFh1HbwaI-Jus0GM,1622
|
|
18
|
+
hpc_runner/core/job_info.py,sha256=QE4iHH3uqYp4KdvZmBtfFUUaZfmPLkrF6LtlK4RuSJM,2858
|
|
19
|
+
hpc_runner/core/resources.py,sha256=AAF1w_kW5QT1Zv7XkwvJ8aNmC63fUalygKquIPR1EYg,1334
|
|
20
|
+
hpc_runner/core/result.py,sha256=UGw6ZRmdGI4oVD5ENzrSK72Igx7QNo-OJX9hLVyldp8,4914
|
|
21
|
+
hpc_runner/core/types.py,sha256=CeLgPLO_ByzdX16UTUrxcgEbA77PKvQJx4x8yXdjNkM,252
|
|
22
|
+
hpc_runner/schedulers/__init__.py,sha256=qBokFLH34MW_C97IVhbglOmX6l67rn_dLOTfLJ7rRjI,1652
|
|
23
|
+
hpc_runner/schedulers/base.py,sha256=tR82_ic_3_L95-VmZWcHwsvLF8kQ5qLDlPqANfXjggE,6761
|
|
24
|
+
hpc_runner/schedulers/detection.py,sha256=b5_qdyroMQsvIf_DYY_RDoje6ozKLA3RS-fWWNR9qUU,1467
|
|
25
|
+
hpc_runner/schedulers/local/__init__.py,sha256=bM0RT5SBxs7TsGDUeUi--Z_vlVt9dgokJcftX92VE58,147
|
|
26
|
+
hpc_runner/schedulers/local/scheduler.py,sha256=yRXcMWtXezLMCE9SywmpMXBrsQguV9pCSkF-aH3rKI4,10214
|
|
27
|
+
hpc_runner/schedulers/local/templates/job.sh.j2,sha256=Z7vU2-KCrZnxzOP1PH8V3v5ZSi8uodYeSDR3ELxNc4s,1888
|
|
28
|
+
hpc_runner/schedulers/sge/__init__.py,sha256=aR_jJD-YA0HOYPaBwW_CEwi3PASXY2x9sOfmrj6-cjM,144
|
|
29
|
+
hpc_runner/schedulers/sge/args.py,sha256=Ghc21h5ttcM1VuC8jW3v8Dir4aqalM1aMjo8Arrs2aA,6670
|
|
30
|
+
hpc_runner/schedulers/sge/parser.py,sha256=kny7PFqJipS6UuV1C694zx1N5YztxO5OxGNkUFuQIFM,8333
|
|
31
|
+
hpc_runner/schedulers/sge/scheduler.py,sha256=Wk2Oz2Czoxc5PETp4uURNEaMIRmwVOPDfUSo-uJiPWg,32334
|
|
32
|
+
hpc_runner/schedulers/sge/templates/batch.sh.j2,sha256=qQxFDN4LPr-u-kBJabAsikagFgXr5LgxefHAYqAAAdY,2022
|
|
33
|
+
hpc_runner/schedulers/sge/templates/interactive.sh.j2,sha256=BJmFyAJE5vlKf1MbH3a-tjWkWKXVZkvfSBmM95izn_w,1948
|
|
34
|
+
hpc_runner/templates/__init__.py,sha256=kiaaYBS4QXfGie83SS0rfmZtlbyRUkGkR_yw04oExNQ,137
|
|
35
|
+
hpc_runner/templates/engine.py,sha256=XDW9C51rz9O2rcB3mpjVHQ0qkeG4386gXa8fwaDYsxs,1393
|
|
36
|
+
hpc_runner/tui/__init__.py,sha256=xuet6Iz1ZL6Ys5h95DMcuiapZNo8QA-sFU3R0NflbgE,136
|
|
37
|
+
hpc_runner/tui/app.py,sha256=U-GDsyARmMfpZEkHnkrmHiKUDZSgZ6Or-FONbHtaOLY,16464
|
|
38
|
+
hpc_runner/tui/snapshot.py,sha256=x_f7oxSJSCVg1mxCsFcMSSZsj6McPdkE7wXRHIyOQZ8,5254
|
|
39
|
+
hpc_runner/tui/components/__init__.py,sha256=cS1VT2uhaWDq18-FvT9Hje_Uev7pI8WGFgWVNERfJMQ,303
|
|
40
|
+
hpc_runner/tui/components/detail_panel.py,sha256=3sRxO8J6ceBUctKm-LSF_aujIa63TEdWZJt2v08ae28,6983
|
|
41
|
+
hpc_runner/tui/components/filter_bar.py,sha256=GT0WGubCppUkFsmWQFNfiKdaZGUaVP_BUJg6HeZByTM,5011
|
|
42
|
+
hpc_runner/tui/components/filter_popup.py,sha256=2xgzP4Ax_11W9rjxXqLdJf4CIGuyu88DF3cuzpypWAQ,10648
|
|
43
|
+
hpc_runner/tui/components/job_table.py,sha256=PA7XrvqZjMp0u3GW2uhNxu0Zaii9Hur41cBRbe1_Yp4,9441
|
|
44
|
+
hpc_runner/tui/providers/__init__.py,sha256=iLzT7HR2ETSf6MxDw64yVn99kiHqzEDOHqNU7XLAEME,100
|
|
45
|
+
hpc_runner/tui/providers/jobs.py,sha256=DC5ZB3rMCuEiIkzSfk2K_ltTHdmPJaLho6XSV_Dp2rA,6334
|
|
46
|
+
hpc_runner/tui/screens/__init__.py,sha256=EoyZZGr_fruzDuDXtsKXyY5QhHbEFVbm820eiRtciBc,221
|
|
47
|
+
hpc_runner/tui/screens/confirm.py,sha256=3sJiIFgfc0VyzjBQMiiK5UPgu7_ig9H-f9HOCmHmoQ8,2130
|
|
48
|
+
hpc_runner/tui/screens/job_details.py,sha256=B7KiZunhfM7QW3xVvmEBQnOB5CQfxYpH9Td0JC6M29A,7488
|
|
49
|
+
hpc_runner/tui/screens/log_viewer.py,sha256=dB52cf3qPoDVK9IW8i-PV-AJhoUdjSyT6jdm98upCZ0,5863
|
|
50
|
+
hpc_runner/tui/styles/monitor.tcss,sha256=-XJ_mF02AlaEuX81N6tkYKhKYDcBKYTDKXejJO5efkI,11349
|
|
51
|
+
hpc_runner/workflow/__init__.py,sha256=Y5h7wfnlWcav_f2USZaP6r5m7I5KFam8eEJGo4UqJ0w,221
|
|
52
|
+
hpc_runner/workflow/dependency.py,sha256=PjhgCurnlfcKYO_arlUDLCKOpwqq324l09Sj0v-iwOU,639
|
|
53
|
+
hpc_runner/workflow/pipeline.py,sha256=1mB160ltfq3bP9R7EuzPsBW2vOK7S43MNmzrht5VuBE,5602
|
|
54
|
+
hpc_runner-0.3.2.dist-info/METADATA,sha256=smaDJik6lhpEqJm4OXzl-wj2WeqG_L4vlHKG9GojlG8,7265
|
|
55
|
+
hpc_runner-0.3.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
56
|
+
hpc_runner-0.3.2.dist-info/entry_points.txt,sha256=_IpvKqwtDP7R-jxj2p4D8ijKAIJp8eG9lmDZkVtrOkc,84
|
|
57
|
+
hpc_runner-0.3.2.dist-info/RECORD,,
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
hpc_runner/__init__.py,sha256=1xnewzCt8FVqseOG5PRmLbiMz0I8V8_TrTyIjW0Q8_A,1414
|
|
2
|
-
hpc_runner/_version.py,sha256=5zTqm8rgXsWYBpB2M3Zw_K1D-aV8wP7NsBLrmMKkrAQ,704
|
|
3
|
-
hpc_runner/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
hpc_runner/cli/__init__.py,sha256=qF_2phBjYZc_rHCyJeZevCvbOCfXQbLCwb-DY5mJNUo,26
|
|
5
|
-
hpc_runner/cli/cancel.py,sha256=8qRkPjlSGs6OGs7-_ilwpUlWpGQe7ch8aB_rEWiiLAI,901
|
|
6
|
-
hpc_runner/cli/config.py,sha256=i5dWu4bFjZw5y2EaKxJIsw2SUgEVLJ-zKh2jIRAdh90,3056
|
|
7
|
-
hpc_runner/cli/main.py,sha256=4BnIN3WfOyusa6TJJ555JJ9kyxaNqlT-KxvawX26x0o,2286
|
|
8
|
-
hpc_runner/cli/monitor.py,sha256=aqr39IqwEUz_eczDLMw1dyfs_Gz6mtqKM2eMHI80f4g,698
|
|
9
|
-
hpc_runner/cli/run.py,sha256=fGK0gwIiQdUl0i2aC5FnwSs9MmuKF6ZZFgg7pn2NitU,9646
|
|
10
|
-
hpc_runner/cli/status.py,sha256=LMKvfIiR2U-r8kZOLw1L1-Xfli0mCtX-sSqI6_gy0i0,1957
|
|
11
|
-
hpc_runner/cli/submit.py,sha256=PcSjcVOSxtGCQlUiH56KTfSL_gLt-k879e2ddB9vUCQ,1982
|
|
12
|
-
hpc_runner/core/__init__.py,sha256=dSAYl2aizg-ZpOdD5BfFqd_UWp_9KmVDpRTRzNTn2u8,644
|
|
13
|
-
hpc_runner/core/config.py,sha256=GRLNurLOmgJiBwHN_gCesBhQ1ntg2DIgjkC06d5nB_8,5231
|
|
14
|
-
hpc_runner/core/descriptors.py,sha256=xaoK3-YbVUcBdeumaY4JZ9noq-d5fqglIwZQqsWvYzU,3307
|
|
15
|
-
hpc_runner/core/exceptions.py,sha256=i7DZoEMYl0MrsT9-6Z0ebrsP3YOLA_6B5THz0LgmNN8,891
|
|
16
|
-
hpc_runner/core/job.py,sha256=wR5rR6c32cZOFgOsn6fGx33FlgWz50RK4xCrjs21y18,11273
|
|
17
|
-
hpc_runner/core/job_array.py,sha256=7VHoZHRzN5JvzWZ_e5pAMeTrNB7-OZw06A8548oK8_c,1595
|
|
18
|
-
hpc_runner/core/job_info.py,sha256=QE4iHH3uqYp4KdvZmBtfFUUaZfmPLkrF6LtlK4RuSJM,2858
|
|
19
|
-
hpc_runner/core/resources.py,sha256=ng1biVsXgGy6AWG50I50aC4LWB1pd60qFLpj5FjIpQc,1275
|
|
20
|
-
hpc_runner/core/result.py,sha256=UGw6ZRmdGI4oVD5ENzrSK72Igx7QNo-OJX9hLVyldp8,4914
|
|
21
|
-
hpc_runner/core/types.py,sha256=CeLgPLO_ByzdX16UTUrxcgEbA77PKvQJx4x8yXdjNkM,252
|
|
22
|
-
hpc_runner/schedulers/__init__.py,sha256=v55_DYgiigiFjXJhI7_XFtvxHoyDFWOntWRB9-HWMrM,1623
|
|
23
|
-
hpc_runner/schedulers/base.py,sha256=vhugT9lFrSZb8BMDO_x-h4nSF2oLg2nOvd347g3qfUY,6223
|
|
24
|
-
hpc_runner/schedulers/detection.py,sha256=b5_qdyroMQsvIf_DYY_RDoje6ozKLA3RS-fWWNR9qUU,1467
|
|
25
|
-
hpc_runner/schedulers/local/__init__.py,sha256=bM0RT5SBxs7TsGDUeUi--Z_vlVt9dgokJcftX92VE58,147
|
|
26
|
-
hpc_runner/schedulers/local/scheduler.py,sha256=aNfA9XnF8MGWxjhGturO_mzy9MQLVTt0ZN3NzSexGgs,14440
|
|
27
|
-
hpc_runner/schedulers/local/templates/job.sh.j2,sha256=MwQnjW6p6XNHSJ9EbcC0H3H4USHhZbMel1dmvOJj-2Y,1483
|
|
28
|
-
hpc_runner/schedulers/sge/__init__.py,sha256=aR_jJD-YA0HOYPaBwW_CEwi3PASXY2x9sOfmrj6-cjM,144
|
|
29
|
-
hpc_runner/schedulers/sge/args.py,sha256=LBRj4UUDJ5jR8tEoCVF4ivjEKjqDI6LMvFsFzTgtOwk,6553
|
|
30
|
-
hpc_runner/schedulers/sge/parser.py,sha256=P6bG7II2icqSrnzgxGanPITV12X1zMvWYV04L6RIH2c,8381
|
|
31
|
-
hpc_runner/schedulers/sge/scheduler.py,sha256=-vz58MQzaJD97TqE4KfrnR3drLhQgHy8bpjpNwpHt2s,31998
|
|
32
|
-
hpc_runner/schedulers/sge/templates/batch.sh.j2,sha256=fqfMIi5bPdkxGARWffYQCTITQczIELAuhXzQ_tYI4d0,2107
|
|
33
|
-
hpc_runner/schedulers/sge/templates/interactive.sh.j2,sha256=hOZzLoJMosbgKRFT0CfTdhW8pS6Q-h74zKdLHoSzY5s,2033
|
|
34
|
-
hpc_runner/templates/__init__.py,sha256=kiaaYBS4QXfGie83SS0rfmZtlbyRUkGkR_yw04oExNQ,137
|
|
35
|
-
hpc_runner/templates/engine.py,sha256=XDW9C51rz9O2rcB3mpjVHQ0qkeG4386gXa8fwaDYsxs,1393
|
|
36
|
-
hpc_runner/tui/__init__.py,sha256=xuet6Iz1ZL6Ys5h95DMcuiapZNo8QA-sFU3R0NflbgE,136
|
|
37
|
-
hpc_runner/tui/app.py,sha256=rsiA2ViNGkfo6pWf2lvVRM3LVM1MunLB8CcNMLHRzso,16466
|
|
38
|
-
hpc_runner/tui/snapshot.py,sha256=sAcxdGaKsFXQMByPip-o1YwFaU-MLf_jGwDlZvEYTxY,5194
|
|
39
|
-
hpc_runner/tui/components/__init__.py,sha256=cS1VT2uhaWDq18-FvT9Hje_Uev7pI8WGFgWVNERfJMQ,303
|
|
40
|
-
hpc_runner/tui/components/detail_panel.py,sha256=3sRxO8J6ceBUctKm-LSF_aujIa63TEdWZJt2v08ae28,6983
|
|
41
|
-
hpc_runner/tui/components/filter_bar.py,sha256=v3YqUnieTzipJCaUHsVIcXc1VwTM3TorYBW-H6Ai5vo,4965
|
|
42
|
-
hpc_runner/tui/components/filter_popup.py,sha256=_car5ic8SS32183XWvbvVX8q1paNoX2Un-Ohy3z2vwo,10428
|
|
43
|
-
hpc_runner/tui/components/job_table.py,sha256=3gqYey0L9i2WInKl7Hknh31_E_PEPSKdFvVwSsG7uuY,9444
|
|
44
|
-
hpc_runner/tui/providers/__init__.py,sha256=iLzT7HR2ETSf6MxDw64yVn99kiHqzEDOHqNU7XLAEME,100
|
|
45
|
-
hpc_runner/tui/providers/jobs.py,sha256=YjhufHvBJu6QICIZLs5FhFBAcQMEyEhw-heSzYxYwvo,6340
|
|
46
|
-
hpc_runner/tui/screens/__init__.py,sha256=EoyZZGr_fruzDuDXtsKXyY5QhHbEFVbm820eiRtciBc,221
|
|
47
|
-
hpc_runner/tui/screens/confirm.py,sha256=ZBjrqcIk6f_5KGLzsSCfewZdyERnR0x2W2A34KYlkbI,2101
|
|
48
|
-
hpc_runner/tui/screens/job_details.py,sha256=B7KiZunhfM7QW3xVvmEBQnOB5CQfxYpH9Td0JC6M29A,7488
|
|
49
|
-
hpc_runner/tui/screens/log_viewer.py,sha256=II6B2Vj4KY-nx1wWWq_5K2gsmi6dSyQm-suaEzauEcM,5888
|
|
50
|
-
hpc_runner/tui/styles/monitor.tcss,sha256=-XJ_mF02AlaEuX81N6tkYKhKYDcBKYTDKXejJO5efkI,11349
|
|
51
|
-
hpc_runner/workflow/__init__.py,sha256=Y5h7wfnlWcav_f2USZaP6r5m7I5KFam8eEJGo4UqJ0w,221
|
|
52
|
-
hpc_runner/workflow/dependency.py,sha256=PjhgCurnlfcKYO_arlUDLCKOpwqq324l09Sj0v-iwOU,639
|
|
53
|
-
hpc_runner/workflow/pipeline.py,sha256=MYV95Kp-5m2YVxYDk_zIYUsyt31ctl7jnVA10F2OJgg,5540
|
|
54
|
-
hpc_runner-0.3.0.dist-info/METADATA,sha256=2-0_jdDuVnmszJzaJDpDOBW_Zfuasem_vr4vXvXJS9Q,7157
|
|
55
|
-
hpc_runner-0.3.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
56
|
-
hpc_runner-0.3.0.dist-info/entry_points.txt,sha256=_IpvKqwtDP7R-jxj2p4D8ijKAIJp8eG9lmDZkVtrOkc,84
|
|
57
|
-
hpc_runner-0.3.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|