omniopt2 7193__py3-none-any.whl → 7195__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 +26 -15
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/.omniopt.py +26 -15
- {omniopt2-7193.dist-info → omniopt2-7195.dist-info}/METADATA +1 -1
- {omniopt2-7193.dist-info → omniopt2-7195.dist-info}/RECORD +35 -35
- omniopt2.egg-info/PKG-INFO +1 -1
- pyproject.toml +1 -1
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/.colorfunctions.sh +0 -0
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/.general.sh +0 -0
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/.helpers.py +0 -0
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/.omniopt_plot_cpu_ram_usage.py +0 -0
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/.omniopt_plot_general.py +0 -0
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/.omniopt_plot_gpu_usage.py +0 -0
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/.omniopt_plot_kde.py +0 -0
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/.omniopt_plot_scatter.py +0 -0
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/.omniopt_plot_scatter_generation_method.py +0 -0
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/.omniopt_plot_scatter_hex.py +0 -0
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/.omniopt_plot_time_and_exit_code.py +0 -0
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/.omniopt_plot_trial_index_result.py +0 -0
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/.omniopt_plot_worker.py +0 -0
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/.random_generator.py +0 -0
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/.shellscript_functions +0 -0
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/.tpe.py +0 -0
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/LICENSE +0 -0
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/apt-dependencies.txt +0 -0
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/omniopt +0 -0
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/omniopt_docker +0 -0
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/omniopt_evaluate +0 -0
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/omniopt_plot +0 -0
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/omniopt_share +0 -0
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/requirements.txt +0 -0
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/setup.py +0 -0
- {omniopt2-7193.data → omniopt2-7195.data}/data/bin/test_requirements.txt +0 -0
- {omniopt2-7193.dist-info → omniopt2-7195.dist-info}/WHEEL +0 -0
- {omniopt2-7193.dist-info → omniopt2-7195.dist-info}/licenses/LICENSE +0 -0
- {omniopt2-7193.dist-info → omniopt2-7195.dist-info}/top_level.txt +0 -0
.omniopt.py
CHANGED
@@ -6018,6 +6018,7 @@ def get_python_errors() -> List[List[str]]:
|
|
6018
6018
|
|
6019
6019
|
@beartype
|
6020
6020
|
def get_first_line_of_file_that_contains_string(stdout_path: str, s: str) -> str:
|
6021
|
+
stdout_path = check_alternate_path(stdout_path)
|
6021
6022
|
if not os.path.exists(stdout_path):
|
6022
6023
|
print_debug(f"File {stdout_path} not found")
|
6023
6024
|
return ""
|
@@ -6045,6 +6046,7 @@ def get_first_line_of_file_that_contains_string(stdout_path: str, s: str) -> str
|
|
6045
6046
|
|
6046
6047
|
@beartype
|
6047
6048
|
def check_for_python_errors(stdout_path: str, file_as_string: str) -> List[str]:
|
6049
|
+
stdout_path = check_alternate_path(stdout_path)
|
6048
6050
|
errors: List[str] = []
|
6049
6051
|
|
6050
6052
|
for search_array in get_python_errors():
|
@@ -6062,6 +6064,7 @@ def check_for_python_errors(stdout_path: str, file_as_string: str) -> List[str]:
|
|
6062
6064
|
|
6063
6065
|
@beartype
|
6064
6066
|
def get_errors_from_outfile(stdout_path: str) -> List[str]:
|
6067
|
+
stdout_path = check_alternate_path(stdout_path)
|
6065
6068
|
file_as_string = get_file_as_string(stdout_path)
|
6066
6069
|
|
6067
6070
|
program_code = get_program_code_from_out_file(stdout_path)
|
@@ -6098,6 +6101,7 @@ def get_errors_from_outfile(stdout_path: str) -> List[str]:
|
|
6098
6101
|
|
6099
6102
|
@beartype
|
6100
6103
|
def print_outfile_analyzed(stdout_path: str) -> None:
|
6104
|
+
stdout_path = check_alternate_path(stdout_path)
|
6101
6105
|
errors = get_errors_from_outfile(stdout_path)
|
6102
6106
|
|
6103
6107
|
_strs: List[str] = []
|
@@ -6129,6 +6133,7 @@ def print_outfile_analyzed(stdout_path: str) -> None:
|
|
6129
6133
|
|
6130
6134
|
@beartype
|
6131
6135
|
def get_parameters_from_outfile(stdout_path: str) -> Union[None, dict, str]:
|
6136
|
+
stdout_path = check_alternate_path(stdout_path)
|
6132
6137
|
try:
|
6133
6138
|
with open(stdout_path, mode='r', encoding="utf-8") as file:
|
6134
6139
|
for line in file:
|
@@ -6400,6 +6405,7 @@ def finish_previous_jobs(new_msgs: List[str]) -> None:
|
|
6400
6405
|
|
6401
6406
|
@beartype
|
6402
6407
|
def get_alt_path_for_orchestrator(stdout_path: str) -> Optional[str]:
|
6408
|
+
stdout_path = check_alternate_path(stdout_path)
|
6403
6409
|
alt_path = None
|
6404
6410
|
if stdout_path.endswith(".err"):
|
6405
6411
|
alt_path = stdout_path[:-4] + ".out"
|
@@ -6410,6 +6416,7 @@ def get_alt_path_for_orchestrator(stdout_path: str) -> Optional[str]:
|
|
6410
6416
|
|
6411
6417
|
@beartype
|
6412
6418
|
def check_orchestrator(stdout_path: str, trial_index: int) -> Optional[List[str]]:
|
6419
|
+
stdout_path = check_alternate_path(stdout_path)
|
6413
6420
|
if not orchestrator or "errors" not in orchestrator:
|
6414
6421
|
return []
|
6415
6422
|
|
@@ -6421,6 +6428,7 @@ def check_orchestrator(stdout_path: str, trial_index: int) -> Optional[List[str]
|
|
6421
6428
|
|
6422
6429
|
@beartype
|
6423
6430
|
def _check_orchestrator_read_stdout_with_fallback(stdout_path: str, trial_index: int) -> Optional[str]:
|
6431
|
+
stdout_path = check_alternate_path(stdout_path)
|
6424
6432
|
try:
|
6425
6433
|
return Path(stdout_path).read_text("UTF-8")
|
6426
6434
|
except FileNotFoundError:
|
@@ -6437,6 +6445,7 @@ def _check_orchestrator_read_stdout_with_fallback(stdout_path: str, trial_index:
|
|
6437
6445
|
|
6438
6446
|
@beartype
|
6439
6447
|
def _check_orchestrator_register_missing_file(stdout_path: str, trial_index: int) -> None:
|
6448
|
+
stdout_path = check_alternate_path(stdout_path)
|
6440
6449
|
if stdout_path not in ORCHESTRATE_TODO:
|
6441
6450
|
ORCHESTRATE_TODO[stdout_path] = trial_index
|
6442
6451
|
print_red(f"File not found: {stdout_path}, will try again later")
|
@@ -6532,6 +6541,7 @@ def orchestrator_start_trial(params_from_out_file: Union[dict, str], trial_index
|
|
6532
6541
|
|
6533
6542
|
@beartype
|
6534
6543
|
def handle_exclude_node(stdout_path: str, hostname_from_out_file: Union[None, str]) -> None:
|
6544
|
+
stdout_path = check_alternate_path(stdout_path)
|
6535
6545
|
if hostname_from_out_file:
|
6536
6546
|
if not is_already_in_defective_nodes(hostname_from_out_file):
|
6537
6547
|
print_yellow(f"\nExcludeNode was triggered for node {hostname_from_out_file}")
|
@@ -6543,29 +6553,30 @@ def handle_exclude_node(stdout_path: str, hostname_from_out_file: Union[None, st
|
|
6543
6553
|
|
6544
6554
|
@beartype
|
6545
6555
|
def handle_restart(stdout_path: str, trial_index: int) -> None:
|
6556
|
+
stdout_path = check_alternate_path(stdout_path)
|
6546
6557
|
params_from_out_file = get_parameters_from_outfile(stdout_path)
|
6547
6558
|
if params_from_out_file:
|
6548
6559
|
orchestrator_start_trial(params_from_out_file, trial_index)
|
6549
6560
|
else:
|
6550
6561
|
print(f"Could not determine parameters from outfile {stdout_path} for restarting job")
|
6551
6562
|
|
6552
|
-
|
6553
|
-
|
6554
|
-
|
6555
|
-
|
6556
|
-
|
6557
|
-
|
6558
|
-
|
6559
|
-
|
6560
|
-
|
6561
|
-
|
6562
|
-
|
6563
|
-
|
6564
|
-
|
6565
|
-
# return path
|
6563
|
+
@beartype
|
6564
|
+
def check_alternate_path(path: str) -> str:
|
6565
|
+
if os.path.exists(path):
|
6566
|
+
return path
|
6567
|
+
if path.endswith('.out'):
|
6568
|
+
alt_path = path[:-4] + '.err'
|
6569
|
+
elif path.endswith('.err'):
|
6570
|
+
alt_path = path[:-4] + '.out'
|
6571
|
+
else:
|
6572
|
+
alt_path = None
|
6573
|
+
if alt_path and os.path.exists(alt_path):
|
6574
|
+
return alt_path
|
6575
|
+
return path
|
6566
6576
|
|
6567
6577
|
@beartype
|
6568
6578
|
def handle_restart_on_different_node(stdout_path: str, hostname_from_out_file: Union[None, str], trial_index: int) -> None:
|
6579
|
+
stdout_path = check_alternate_path(stdout_path)
|
6569
6580
|
if hostname_from_out_file:
|
6570
6581
|
if not is_already_in_defective_nodes(hostname_from_out_file):
|
6571
6582
|
print_yellow(f"\nRestartOnDifferentNode was triggered for node {hostname_from_out_file}. Adding node to defective hosts list and restarting on another host.")
|
@@ -6578,7 +6589,7 @@ def handle_restart_on_different_node(stdout_path: str, hostname_from_out_file: U
|
|
6578
6589
|
|
6579
6590
|
@beartype
|
6580
6591
|
def _orchestrate(stdout_path: str, trial_index: int) -> None:
|
6581
|
-
|
6592
|
+
stdout_path = check_alternate_path(stdout_path)
|
6582
6593
|
|
6583
6594
|
behavs = check_orchestrator(stdout_path, trial_index)
|
6584
6595
|
|
@@ -6018,6 +6018,7 @@ def get_python_errors() -> List[List[str]]:
|
|
6018
6018
|
|
6019
6019
|
@beartype
|
6020
6020
|
def get_first_line_of_file_that_contains_string(stdout_path: str, s: str) -> str:
|
6021
|
+
stdout_path = check_alternate_path(stdout_path)
|
6021
6022
|
if not os.path.exists(stdout_path):
|
6022
6023
|
print_debug(f"File {stdout_path} not found")
|
6023
6024
|
return ""
|
@@ -6045,6 +6046,7 @@ def get_first_line_of_file_that_contains_string(stdout_path: str, s: str) -> str
|
|
6045
6046
|
|
6046
6047
|
@beartype
|
6047
6048
|
def check_for_python_errors(stdout_path: str, file_as_string: str) -> List[str]:
|
6049
|
+
stdout_path = check_alternate_path(stdout_path)
|
6048
6050
|
errors: List[str] = []
|
6049
6051
|
|
6050
6052
|
for search_array in get_python_errors():
|
@@ -6062,6 +6064,7 @@ def check_for_python_errors(stdout_path: str, file_as_string: str) -> List[str]:
|
|
6062
6064
|
|
6063
6065
|
@beartype
|
6064
6066
|
def get_errors_from_outfile(stdout_path: str) -> List[str]:
|
6067
|
+
stdout_path = check_alternate_path(stdout_path)
|
6065
6068
|
file_as_string = get_file_as_string(stdout_path)
|
6066
6069
|
|
6067
6070
|
program_code = get_program_code_from_out_file(stdout_path)
|
@@ -6098,6 +6101,7 @@ def get_errors_from_outfile(stdout_path: str) -> List[str]:
|
|
6098
6101
|
|
6099
6102
|
@beartype
|
6100
6103
|
def print_outfile_analyzed(stdout_path: str) -> None:
|
6104
|
+
stdout_path = check_alternate_path(stdout_path)
|
6101
6105
|
errors = get_errors_from_outfile(stdout_path)
|
6102
6106
|
|
6103
6107
|
_strs: List[str] = []
|
@@ -6129,6 +6133,7 @@ def print_outfile_analyzed(stdout_path: str) -> None:
|
|
6129
6133
|
|
6130
6134
|
@beartype
|
6131
6135
|
def get_parameters_from_outfile(stdout_path: str) -> Union[None, dict, str]:
|
6136
|
+
stdout_path = check_alternate_path(stdout_path)
|
6132
6137
|
try:
|
6133
6138
|
with open(stdout_path, mode='r', encoding="utf-8") as file:
|
6134
6139
|
for line in file:
|
@@ -6400,6 +6405,7 @@ def finish_previous_jobs(new_msgs: List[str]) -> None:
|
|
6400
6405
|
|
6401
6406
|
@beartype
|
6402
6407
|
def get_alt_path_for_orchestrator(stdout_path: str) -> Optional[str]:
|
6408
|
+
stdout_path = check_alternate_path(stdout_path)
|
6403
6409
|
alt_path = None
|
6404
6410
|
if stdout_path.endswith(".err"):
|
6405
6411
|
alt_path = stdout_path[:-4] + ".out"
|
@@ -6410,6 +6416,7 @@ def get_alt_path_for_orchestrator(stdout_path: str) -> Optional[str]:
|
|
6410
6416
|
|
6411
6417
|
@beartype
|
6412
6418
|
def check_orchestrator(stdout_path: str, trial_index: int) -> Optional[List[str]]:
|
6419
|
+
stdout_path = check_alternate_path(stdout_path)
|
6413
6420
|
if not orchestrator or "errors" not in orchestrator:
|
6414
6421
|
return []
|
6415
6422
|
|
@@ -6421,6 +6428,7 @@ def check_orchestrator(stdout_path: str, trial_index: int) -> Optional[List[str]
|
|
6421
6428
|
|
6422
6429
|
@beartype
|
6423
6430
|
def _check_orchestrator_read_stdout_with_fallback(stdout_path: str, trial_index: int) -> Optional[str]:
|
6431
|
+
stdout_path = check_alternate_path(stdout_path)
|
6424
6432
|
try:
|
6425
6433
|
return Path(stdout_path).read_text("UTF-8")
|
6426
6434
|
except FileNotFoundError:
|
@@ -6437,6 +6445,7 @@ def _check_orchestrator_read_stdout_with_fallback(stdout_path: str, trial_index:
|
|
6437
6445
|
|
6438
6446
|
@beartype
|
6439
6447
|
def _check_orchestrator_register_missing_file(stdout_path: str, trial_index: int) -> None:
|
6448
|
+
stdout_path = check_alternate_path(stdout_path)
|
6440
6449
|
if stdout_path not in ORCHESTRATE_TODO:
|
6441
6450
|
ORCHESTRATE_TODO[stdout_path] = trial_index
|
6442
6451
|
print_red(f"File not found: {stdout_path}, will try again later")
|
@@ -6532,6 +6541,7 @@ def orchestrator_start_trial(params_from_out_file: Union[dict, str], trial_index
|
|
6532
6541
|
|
6533
6542
|
@beartype
|
6534
6543
|
def handle_exclude_node(stdout_path: str, hostname_from_out_file: Union[None, str]) -> None:
|
6544
|
+
stdout_path = check_alternate_path(stdout_path)
|
6535
6545
|
if hostname_from_out_file:
|
6536
6546
|
if not is_already_in_defective_nodes(hostname_from_out_file):
|
6537
6547
|
print_yellow(f"\nExcludeNode was triggered for node {hostname_from_out_file}")
|
@@ -6543,29 +6553,30 @@ def handle_exclude_node(stdout_path: str, hostname_from_out_file: Union[None, st
|
|
6543
6553
|
|
6544
6554
|
@beartype
|
6545
6555
|
def handle_restart(stdout_path: str, trial_index: int) -> None:
|
6556
|
+
stdout_path = check_alternate_path(stdout_path)
|
6546
6557
|
params_from_out_file = get_parameters_from_outfile(stdout_path)
|
6547
6558
|
if params_from_out_file:
|
6548
6559
|
orchestrator_start_trial(params_from_out_file, trial_index)
|
6549
6560
|
else:
|
6550
6561
|
print(f"Could not determine parameters from outfile {stdout_path} for restarting job")
|
6551
6562
|
|
6552
|
-
|
6553
|
-
|
6554
|
-
|
6555
|
-
|
6556
|
-
|
6557
|
-
|
6558
|
-
|
6559
|
-
|
6560
|
-
|
6561
|
-
|
6562
|
-
|
6563
|
-
|
6564
|
-
|
6565
|
-
# return path
|
6563
|
+
@beartype
|
6564
|
+
def check_alternate_path(path: str) -> str:
|
6565
|
+
if os.path.exists(path):
|
6566
|
+
return path
|
6567
|
+
if path.endswith('.out'):
|
6568
|
+
alt_path = path[:-4] + '.err'
|
6569
|
+
elif path.endswith('.err'):
|
6570
|
+
alt_path = path[:-4] + '.out'
|
6571
|
+
else:
|
6572
|
+
alt_path = None
|
6573
|
+
if alt_path and os.path.exists(alt_path):
|
6574
|
+
return alt_path
|
6575
|
+
return path
|
6566
6576
|
|
6567
6577
|
@beartype
|
6568
6578
|
def handle_restart_on_different_node(stdout_path: str, hostname_from_out_file: Union[None, str], trial_index: int) -> None:
|
6579
|
+
stdout_path = check_alternate_path(stdout_path)
|
6569
6580
|
if hostname_from_out_file:
|
6570
6581
|
if not is_already_in_defective_nodes(hostname_from_out_file):
|
6571
6582
|
print_yellow(f"\nRestartOnDifferentNode was triggered for node {hostname_from_out_file}. Adding node to defective hosts list and restarting on another host.")
|
@@ -6578,7 +6589,7 @@ def handle_restart_on_different_node(stdout_path: str, hostname_from_out_file: U
|
|
6578
6589
|
|
6579
6590
|
@beartype
|
6580
6591
|
def _orchestrate(stdout_path: str, trial_index: int) -> None:
|
6581
|
-
|
6592
|
+
stdout_path = check_alternate_path(stdout_path)
|
6582
6593
|
|
6583
6594
|
behavs = check_orchestrator(stdout_path, trial_index)
|
6584
6595
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
|
4
4
|
.gitignore,sha256=OMaFWOR6wxjAlI85rF3euQcjQFFAl1F34abZkltKnaU,3714
|
5
5
|
.helpers.py,sha256=6uoxzpi8zfvvQy16LpGkIC1OzvDC8TR8luAOX1iW1OM,30679
|
6
|
-
.omniopt.py,sha256=
|
6
|
+
.omniopt.py,sha256=McGU6PrLnLJfqVizmNtZJoaZj2po_8POq4L2Wi50IFw,384158
|
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
|
@@ -26,44 +26,44 @@ omniopt_docker,sha256=LWVUeyvmA5AKqAHiH9jBUkR5uZ6AHMnSy0eET7mK6E4,3602
|
|
26
26
|
omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
|
27
27
|
omniopt_plot,sha256=Z8ZR10p-ZRSgMeVPO-wVCJ8lk-LQtntjZ9Bk9RifCIs,13360
|
28
28
|
omniopt_share,sha256=EL0XfZDBX3f6zCI8oLI-JAprBvv2UesVw7k6ufXB1ns,13888
|
29
|
-
pyproject.toml,sha256=
|
29
|
+
pyproject.toml,sha256=fqNOb6_bbyJyqHyjkHXUXGZrBIzmQSfp6s9kspIOvTQ,397
|
30
30
|
requirements.txt,sha256=jqvp-P5m33fwsODnA_FFVVujUwIt9z_nhBRIxAtahcQ,302
|
31
31
|
setup.cfg,sha256=HEc8uu6NpfxG5_AVh5SvXOpEFMNKPPPxgMIAH144vT4,38
|
32
32
|
test_requirements.txt,sha256=qUBRLahv3rTxvKyddRhEzT-EnQyKdubu5KxyGhUHPr8,470
|
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-
|
60
|
-
omniopt2-
|
61
|
-
omniopt2.egg-info/PKG-INFO,sha256=
|
33
|
+
omniopt2-7195.data/data/bin/.colorfunctions.sh,sha256=x6RGjZAkQR24oS-0uatyX55KS-UVcPQWTCC8egI5Y9o,1227
|
34
|
+
omniopt2-7195.data/data/bin/.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
|
35
|
+
omniopt2-7195.data/data/bin/.helpers.py,sha256=6uoxzpi8zfvvQy16LpGkIC1OzvDC8TR8luAOX1iW1OM,30679
|
36
|
+
omniopt2-7195.data/data/bin/.omniopt.py,sha256=McGU6PrLnLJfqVizmNtZJoaZj2po_8POq4L2Wi50IFw,384158
|
37
|
+
omniopt2-7195.data/data/bin/.omniopt_plot_cpu_ram_usage.py,sha256=DbOAmdrbcZtsMnHJgHfeRngjtv6zX5J0axyua_dYezc,3932
|
38
|
+
omniopt2-7195.data/data/bin/.omniopt_plot_general.py,sha256=ZERZJkvVOoJhi7SszmTF1Iln-_08_0Aki48u3LHUW-k,6809
|
39
|
+
omniopt2-7195.data/data/bin/.omniopt_plot_gpu_usage.py,sha256=ojxVicwSoiyl7f3c-6lLuT2EpyPcSJKEcbp75LgDY2k,5107
|
40
|
+
omniopt2-7195.data/data/bin/.omniopt_plot_kde.py,sha256=uRLWr72TDKvj3AqJ0O0AvkKZ1ok1O1QpXnbfQQdo0nA,6873
|
41
|
+
omniopt2-7195.data/data/bin/.omniopt_plot_scatter.py,sha256=-amqmLR_YLCbHImLPh6gwVFv8iiVnXME544XHsRVCuw,8422
|
42
|
+
omniopt2-7195.data/data/bin/.omniopt_plot_scatter_generation_method.py,sha256=rgKY_w1E516c9UucVaEvaKd8tCnoUq9xg-RrYSDzYEQ,4289
|
43
|
+
omniopt2-7195.data/data/bin/.omniopt_plot_scatter_hex.py,sha256=w1L5gL6Bc_QudoSJi2lxEVvF17Apjjb3l2T-lXGnsUg,10279
|
44
|
+
omniopt2-7195.data/data/bin/.omniopt_plot_time_and_exit_code.py,sha256=hC4RFDiJN_UImezFR6M5uVF-QKDqMDpq6R5DIg7dDDc,6463
|
45
|
+
omniopt2-7195.data/data/bin/.omniopt_plot_trial_index_result.py,sha256=5DmqZAQO_PFmzdap-TIhSMAshRXpOHQacnHAtjwnzN4,4629
|
46
|
+
omniopt2-7195.data/data/bin/.omniopt_plot_worker.py,sha256=VuluQq4W6KRR5RU08dxmDSFk5mbfDRkRJQFwwcLgAGw,4524
|
47
|
+
omniopt2-7195.data/data/bin/.random_generator.py,sha256=ezBBUXpez_QaGdpCglMcJ0KZPdQP0XdX5gnLzO1xhwU,2987
|
48
|
+
omniopt2-7195.data/data/bin/.shellscript_functions,sha256=IRbIX0-BBxkQGxWBFBc-RdaGj6Rs_zu3gkxAWd5fL2k,14839
|
49
|
+
omniopt2-7195.data/data/bin/.tpe.py,sha256=Yd9s-ixCbWxTd3x0O1M1sok9QfM2mBEfsDwXhx50-Nc,6464
|
50
|
+
omniopt2-7195.data/data/bin/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
51
|
+
omniopt2-7195.data/data/bin/apt-dependencies.txt,sha256=X5tBB8ZLW9XaFtRh8B7C2pIkSoxNNawqioDr0QZAtuM,149
|
52
|
+
omniopt2-7195.data/data/bin/omniopt,sha256=3JRBCx_MjkcRlc0y80VNxV0cH0Zs4Va95pU4ojk9dlU,47447
|
53
|
+
omniopt2-7195.data/data/bin/omniopt_docker,sha256=LWVUeyvmA5AKqAHiH9jBUkR5uZ6AHMnSy0eET7mK6E4,3602
|
54
|
+
omniopt2-7195.data/data/bin/omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
|
55
|
+
omniopt2-7195.data/data/bin/omniopt_plot,sha256=Z8ZR10p-ZRSgMeVPO-wVCJ8lk-LQtntjZ9Bk9RifCIs,13360
|
56
|
+
omniopt2-7195.data/data/bin/omniopt_share,sha256=EL0XfZDBX3f6zCI8oLI-JAprBvv2UesVw7k6ufXB1ns,13888
|
57
|
+
omniopt2-7195.data/data/bin/requirements.txt,sha256=jqvp-P5m33fwsODnA_FFVVujUwIt9z_nhBRIxAtahcQ,302
|
58
|
+
omniopt2-7195.data/data/bin/setup.py,sha256=g3uEqJHXhggXwgLYoxOjsXg9Z6IV1ubh-Og59AZ264Q,4648
|
59
|
+
omniopt2-7195.data/data/bin/test_requirements.txt,sha256=qUBRLahv3rTxvKyddRhEzT-EnQyKdubu5KxyGhUHPr8,470
|
60
|
+
omniopt2-7195.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
61
|
+
omniopt2.egg-info/PKG-INFO,sha256=KnF000w5bOCnKMMChxHPdK3P6dnHt91_5W7cv61iDCY,5822
|
62
62
|
omniopt2.egg-info/SOURCES.txt,sha256=N-HtSaaqFRsd4XqAfeWVSp__3I-sw0d7cknJgyewRwQ,778
|
63
63
|
omniopt2.egg-info/dependency_links.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
64
64
|
omniopt2.egg-info/requires.txt,sha256=lR4dCom0VD9WtxDpAuN83qtJYZfMHl5GT8LjhUk6UJE,772
|
65
65
|
omniopt2.egg-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
66
|
-
omniopt2-
|
67
|
-
omniopt2-
|
68
|
-
omniopt2-
|
69
|
-
omniopt2-
|
66
|
+
omniopt2-7195.dist-info/METADATA,sha256=KnF000w5bOCnKMMChxHPdK3P6dnHt91_5W7cv61iDCY,5822
|
67
|
+
omniopt2-7195.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
68
|
+
omniopt2-7195.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
69
|
+
omniopt2-7195.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-7193.data → omniopt2-7195.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
|
File without changes
|