omniopt2 7016__py3-none-any.whl → 7018__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.
- .omniopt.py +16 -19
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/.omniopt.py +16 -19
- {omniopt2-7016.dist-info → omniopt2-7018.dist-info}/METADATA +1 -1
- {omniopt2-7016.dist-info → omniopt2-7018.dist-info}/RECORD +34 -34
- omniopt2.egg-info/PKG-INFO +1 -1
- pyproject.toml +1 -1
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/.colorfunctions.sh +0 -0
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/.general.sh +0 -0
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/.helpers.py +0 -0
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/.omniopt_plot_cpu_ram_usage.py +0 -0
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/.omniopt_plot_general.py +0 -0
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/.omniopt_plot_gpu_usage.py +0 -0
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/.omniopt_plot_kde.py +0 -0
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/.omniopt_plot_scatter.py +0 -0
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/.omniopt_plot_scatter_generation_method.py +0 -0
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/.omniopt_plot_scatter_hex.py +0 -0
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/.omniopt_plot_time_and_exit_code.py +0 -0
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/.omniopt_plot_trial_index_result.py +0 -0
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/.omniopt_plot_worker.py +0 -0
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/.random_generator.py +0 -0
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/.shellscript_functions +0 -0
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/LICENSE +0 -0
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/apt-dependencies.txt +0 -0
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/omniopt +0 -0
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/omniopt_docker +0 -0
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/omniopt_evaluate +0 -0
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/omniopt_plot +0 -0
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/omniopt_share +0 -0
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/requirements.txt +0 -0
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/setup.py +0 -0
- {omniopt2-7016.data → omniopt2-7018.data}/data/bin/test_requirements.txt +0 -0
- {omniopt2-7016.dist-info → omniopt2-7018.dist-info}/WHEEL +0 -0
- {omniopt2-7016.dist-info → omniopt2-7018.dist-info}/licenses/LICENSE +0 -0
- {omniopt2-7016.dist-info → omniopt2-7018.dist-info}/top_level.txt +0 -0
.omniopt.py
CHANGED
@@ -6439,23 +6439,20 @@ def handle_restart(stdout_path: str, trial_index: int) -> None:
|
|
6439
6439
|
else:
|
6440
6440
|
print(f"Could not determine parameters from outfile {stdout_path} for restarting job")
|
6441
6441
|
|
6442
|
-
|
6443
|
-
def check_alternate_path(path: str) -> str:
|
6444
|
-
if os.path.exists(path):
|
6445
|
-
return path
|
6446
|
-
|
6447
|
-
|
6448
|
-
|
6449
|
-
|
6450
|
-
|
6451
|
-
|
6452
|
-
|
6453
|
-
|
6454
|
-
|
6455
|
-
|
6456
|
-
|
6457
|
-
# Wenn auch der alternative Pfad nicht existiert, gib den Originalpfad zurück
|
6458
|
-
return path
|
6442
|
+
#@beartype
|
6443
|
+
#def check_alternate_path(path: str) -> str:
|
6444
|
+
# if os.path.exists(path):
|
6445
|
+
# return path
|
6446
|
+
# if path.endswith('.out'):
|
6447
|
+
# alt_path = path[:-4] + '.err'
|
6448
|
+
# elif path.endswith('.err'):
|
6449
|
+
# alt_path = path[:-4] + '.out'
|
6450
|
+
# else:
|
6451
|
+
# alt_path = None
|
6452
|
+
# if alt_path and os.path.exists(alt_path):
|
6453
|
+
# return alt_path
|
6454
|
+
# # Wenn auch der alternative Pfad nicht existiert, gib den Originalpfad zurück
|
6455
|
+
# return path
|
6459
6456
|
|
6460
6457
|
@beartype
|
6461
6458
|
def handle_restart_on_different_node(stdout_path: str, hostname_from_out_file: Union[None, str], trial_index: int) -> None:
|
@@ -6471,13 +6468,13 @@ def handle_restart_on_different_node(stdout_path: str, hostname_from_out_file: U
|
|
6471
6468
|
|
6472
6469
|
@beartype
|
6473
6470
|
def _orchestrate(stdout_path: str, trial_index: int) -> None:
|
6471
|
+
#stdout_path = check_alternate_path(stdout_path)
|
6472
|
+
|
6474
6473
|
behavs = check_orchestrator(stdout_path, trial_index)
|
6475
6474
|
|
6476
6475
|
if not behavs or behavs is None:
|
6477
6476
|
return
|
6478
6477
|
|
6479
|
-
stdout_path = check_alternate_path(stdout_path)
|
6480
|
-
|
6481
6478
|
hostname_from_out_file = get_hostname_from_outfile(stdout_path)
|
6482
6479
|
|
6483
6480
|
behavior_handlers = {
|
@@ -6439,23 +6439,20 @@ def handle_restart(stdout_path: str, trial_index: int) -> None:
|
|
6439
6439
|
else:
|
6440
6440
|
print(f"Could not determine parameters from outfile {stdout_path} for restarting job")
|
6441
6441
|
|
6442
|
-
|
6443
|
-
def check_alternate_path(path: str) -> str:
|
6444
|
-
if os.path.exists(path):
|
6445
|
-
return path
|
6446
|
-
|
6447
|
-
|
6448
|
-
|
6449
|
-
|
6450
|
-
|
6451
|
-
|
6452
|
-
|
6453
|
-
|
6454
|
-
|
6455
|
-
|
6456
|
-
|
6457
|
-
# Wenn auch der alternative Pfad nicht existiert, gib den Originalpfad zurück
|
6458
|
-
return path
|
6442
|
+
#@beartype
|
6443
|
+
#def check_alternate_path(path: str) -> str:
|
6444
|
+
# if os.path.exists(path):
|
6445
|
+
# return path
|
6446
|
+
# if path.endswith('.out'):
|
6447
|
+
# alt_path = path[:-4] + '.err'
|
6448
|
+
# elif path.endswith('.err'):
|
6449
|
+
# alt_path = path[:-4] + '.out'
|
6450
|
+
# else:
|
6451
|
+
# alt_path = None
|
6452
|
+
# if alt_path and os.path.exists(alt_path):
|
6453
|
+
# return alt_path
|
6454
|
+
# # Wenn auch der alternative Pfad nicht existiert, gib den Originalpfad zurück
|
6455
|
+
# return path
|
6459
6456
|
|
6460
6457
|
@beartype
|
6461
6458
|
def handle_restart_on_different_node(stdout_path: str, hostname_from_out_file: Union[None, str], trial_index: int) -> None:
|
@@ -6471,13 +6468,13 @@ def handle_restart_on_different_node(stdout_path: str, hostname_from_out_file: U
|
|
6471
6468
|
|
6472
6469
|
@beartype
|
6473
6470
|
def _orchestrate(stdout_path: str, trial_index: int) -> None:
|
6471
|
+
#stdout_path = check_alternate_path(stdout_path)
|
6472
|
+
|
6474
6473
|
behavs = check_orchestrator(stdout_path, trial_index)
|
6475
6474
|
|
6476
6475
|
if not behavs or behavs is None:
|
6477
6476
|
return
|
6478
6477
|
|
6479
|
-
stdout_path = check_alternate_path(stdout_path)
|
6480
|
-
|
6481
6478
|
hostname_from_out_file = get_hostname_from_outfile(stdout_path)
|
6482
6479
|
|
6483
6480
|
behavior_handlers = {
|
@@ -3,7 +3,7 @@
|
|
3
3
|
.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
|
4
4
|
.gitignore,sha256=OMaFWOR6wxjAlI85rF3euQcjQFFAl1F34abZkltKnaU,3714
|
5
5
|
.helpers.py,sha256=srrRn0QBzG8JpNbHAYG2k1rQY6JYrUrNdTj-tDMJSyg,30526
|
6
|
-
.omniopt.py,sha256=
|
6
|
+
.omniopt.py,sha256=zVDv7PsvFP68XEgFBKTh_2lX3irOlPMMNnPja6cVSSQ,372670
|
7
7
|
.omniopt_plot_cpu_ram_usage.py,sha256=DbOAmdrbcZtsMnHJgHfeRngjtv6zX5J0axyua_dYezc,3932
|
8
8
|
.omniopt_plot_general.py,sha256=ZERZJkvVOoJhi7SszmTF1Iln-_08_0Aki48u3LHUW-k,6809
|
9
9
|
.omniopt_plot_gpu_usage.py,sha256=ojxVicwSoiyl7f3c-6lLuT2EpyPcSJKEcbp75LgDY2k,5107
|
@@ -25,43 +25,43 @@ omniopt_docker,sha256=LWVUeyvmA5AKqAHiH9jBUkR5uZ6AHMnSy0eET7mK6E4,3602
|
|
25
25
|
omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
|
26
26
|
omniopt_plot,sha256=Z8ZR10p-ZRSgMeVPO-wVCJ8lk-LQtntjZ9Bk9RifCIs,13360
|
27
27
|
omniopt_share,sha256=7g5I7YdoWcA6_GDwWwq0xPf23qiVc_VDrm9ySLH7SH0,14051
|
28
|
-
pyproject.toml,sha256=
|
28
|
+
pyproject.toml,sha256=EdQRF7D2szxmgL6zPYvjkUBQL1kyE4NeNB05xKPp5Bs,397
|
29
29
|
requirements.txt,sha256=gj9r1kqJK9w1q6YJuViWlq7U0GZf5SOYVO1Ndcy24L0,280
|
30
30
|
setup.cfg,sha256=HEc8uu6NpfxG5_AVh5SvXOpEFMNKPPPxgMIAH144vT4,38
|
31
31
|
test_requirements.txt,sha256=dnCbKmKalrVzNZ_-iQWf1xCxcnDsdGuhbDAr9XlGm-U,477
|
32
|
-
omniopt2-
|
33
|
-
omniopt2-
|
34
|
-
omniopt2-
|
35
|
-
omniopt2-
|
36
|
-
omniopt2-
|
37
|
-
omniopt2-
|
38
|
-
omniopt2-
|
39
|
-
omniopt2-
|
40
|
-
omniopt2-
|
41
|
-
omniopt2-
|
42
|
-
omniopt2-
|
43
|
-
omniopt2-
|
44
|
-
omniopt2-
|
45
|
-
omniopt2-
|
46
|
-
omniopt2-
|
47
|
-
omniopt2-
|
48
|
-
omniopt2-
|
49
|
-
omniopt2-
|
50
|
-
omniopt2-
|
51
|
-
omniopt2-
|
52
|
-
omniopt2-
|
53
|
-
omniopt2-
|
54
|
-
omniopt2-
|
55
|
-
omniopt2-
|
56
|
-
omniopt2-
|
57
|
-
omniopt2-
|
58
|
-
omniopt2-
|
59
|
-
omniopt2.egg-info/PKG-INFO,sha256=
|
32
|
+
omniopt2-7018.data/data/bin/.colorfunctions.sh,sha256=CDlgjwrsrHR_E6c-Qak5wZlotArXm-nf9sVvXePzGZA,1083
|
33
|
+
omniopt2-7018.data/data/bin/.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
|
34
|
+
omniopt2-7018.data/data/bin/.helpers.py,sha256=srrRn0QBzG8JpNbHAYG2k1rQY6JYrUrNdTj-tDMJSyg,30526
|
35
|
+
omniopt2-7018.data/data/bin/.omniopt.py,sha256=zVDv7PsvFP68XEgFBKTh_2lX3irOlPMMNnPja6cVSSQ,372670
|
36
|
+
omniopt2-7018.data/data/bin/.omniopt_plot_cpu_ram_usage.py,sha256=DbOAmdrbcZtsMnHJgHfeRngjtv6zX5J0axyua_dYezc,3932
|
37
|
+
omniopt2-7018.data/data/bin/.omniopt_plot_general.py,sha256=ZERZJkvVOoJhi7SszmTF1Iln-_08_0Aki48u3LHUW-k,6809
|
38
|
+
omniopt2-7018.data/data/bin/.omniopt_plot_gpu_usage.py,sha256=ojxVicwSoiyl7f3c-6lLuT2EpyPcSJKEcbp75LgDY2k,5107
|
39
|
+
omniopt2-7018.data/data/bin/.omniopt_plot_kde.py,sha256=uRLWr72TDKvj3AqJ0O0AvkKZ1ok1O1QpXnbfQQdo0nA,6873
|
40
|
+
omniopt2-7018.data/data/bin/.omniopt_plot_scatter.py,sha256=-amqmLR_YLCbHImLPh6gwVFv8iiVnXME544XHsRVCuw,8422
|
41
|
+
omniopt2-7018.data/data/bin/.omniopt_plot_scatter_generation_method.py,sha256=rgKY_w1E516c9UucVaEvaKd8tCnoUq9xg-RrYSDzYEQ,4289
|
42
|
+
omniopt2-7018.data/data/bin/.omniopt_plot_scatter_hex.py,sha256=w1L5gL6Bc_QudoSJi2lxEVvF17Apjjb3l2T-lXGnsUg,10279
|
43
|
+
omniopt2-7018.data/data/bin/.omniopt_plot_time_and_exit_code.py,sha256=hC4RFDiJN_UImezFR6M5uVF-QKDqMDpq6R5DIg7dDDc,6463
|
44
|
+
omniopt2-7018.data/data/bin/.omniopt_plot_trial_index_result.py,sha256=5DmqZAQO_PFmzdap-TIhSMAshRXpOHQacnHAtjwnzN4,4629
|
45
|
+
omniopt2-7018.data/data/bin/.omniopt_plot_worker.py,sha256=VuluQq4W6KRR5RU08dxmDSFk5mbfDRkRJQFwwcLgAGw,4524
|
46
|
+
omniopt2-7018.data/data/bin/.random_generator.py,sha256=ezBBUXpez_QaGdpCglMcJ0KZPdQP0XdX5gnLzO1xhwU,2987
|
47
|
+
omniopt2-7018.data/data/bin/.shellscript_functions,sha256=7IjirQJpC7TCRPuRj1dO2W6A8h5cHt0dVzj6eH_2EiQ,14664
|
48
|
+
omniopt2-7018.data/data/bin/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
49
|
+
omniopt2-7018.data/data/bin/apt-dependencies.txt,sha256=X5tBB8ZLW9XaFtRh8B7C2pIkSoxNNawqioDr0QZAtuM,149
|
50
|
+
omniopt2-7018.data/data/bin/omniopt,sha256=RIi0yZALrZGefiejun1fkDJ0LX95WymXd2xZFlglMsQ,48072
|
51
|
+
omniopt2-7018.data/data/bin/omniopt_docker,sha256=LWVUeyvmA5AKqAHiH9jBUkR5uZ6AHMnSy0eET7mK6E4,3602
|
52
|
+
omniopt2-7018.data/data/bin/omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
|
53
|
+
omniopt2-7018.data/data/bin/omniopt_plot,sha256=Z8ZR10p-ZRSgMeVPO-wVCJ8lk-LQtntjZ9Bk9RifCIs,13360
|
54
|
+
omniopt2-7018.data/data/bin/omniopt_share,sha256=7g5I7YdoWcA6_GDwWwq0xPf23qiVc_VDrm9ySLH7SH0,14051
|
55
|
+
omniopt2-7018.data/data/bin/requirements.txt,sha256=gj9r1kqJK9w1q6YJuViWlq7U0GZf5SOYVO1Ndcy24L0,280
|
56
|
+
omniopt2-7018.data/data/bin/setup.py,sha256=g3uEqJHXhggXwgLYoxOjsXg9Z6IV1ubh-Og59AZ264Q,4648
|
57
|
+
omniopt2-7018.data/data/bin/test_requirements.txt,sha256=dnCbKmKalrVzNZ_-iQWf1xCxcnDsdGuhbDAr9XlGm-U,477
|
58
|
+
omniopt2-7018.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
59
|
+
omniopt2.egg-info/PKG-INFO,sha256=14vb6FAPaOdj7WTw0MFL9GrVo451CmK0ZNaa70EYbdY,5792
|
60
60
|
omniopt2.egg-info/SOURCES.txt,sha256=kXBlYs2_3BE6tKUH1egGFa_9X5w8EQ5pm9dKgPEvdhY,770
|
61
61
|
omniopt2.egg-info/dependency_links.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
62
62
|
omniopt2.egg-info/requires.txt,sha256=rH_jC1LI0Ch8b5iWYh7EFq1ylyc9uswwZnyPZnlp9Qo,757
|
63
63
|
omniopt2.egg-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
64
|
-
omniopt2-
|
65
|
-
omniopt2-
|
66
|
-
omniopt2-
|
67
|
-
omniopt2-
|
64
|
+
omniopt2-7018.dist-info/METADATA,sha256=14vb6FAPaOdj7WTw0MFL9GrVo451CmK0ZNaa70EYbdY,5792
|
65
|
+
omniopt2-7018.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
66
|
+
omniopt2-7018.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
67
|
+
omniopt2-7018.dist-info/RECORD,,
|
omniopt2.egg-info/PKG-INFO
CHANGED
pyproject.toml
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{omniopt2-7016.data → omniopt2-7018.data}/data/bin/.omniopt_plot_scatter_generation_method.py
RENAMED
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
|
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
|