omniopt2 8701__py3-none-any.whl → 8710__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.
Potentially problematic release.
This version of omniopt2 might be problematic. Click here for more details.
- .omniopt.py +27 -14
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/.omniopt.py +27 -14
- {omniopt2-8701.dist-info → omniopt2-8710.dist-info}/METADATA +1 -1
- {omniopt2-8701.dist-info → omniopt2-8710.dist-info}/RECORD +36 -36
- omniopt2.egg-info/PKG-INFO +1 -1
- pyproject.toml +1 -1
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/.colorfunctions.sh +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/.general.sh +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/.helpers.py +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/.omniopt_plot_cpu_ram_usage.py +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/.omniopt_plot_general.py +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/.omniopt_plot_gpu_usage.py +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/.omniopt_plot_kde.py +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/.omniopt_plot_scatter.py +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/.omniopt_plot_scatter_generation_method.py +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/.omniopt_plot_scatter_hex.py +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/.omniopt_plot_time_and_exit_code.py +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/.omniopt_plot_trial_index_result.py +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/.omniopt_plot_worker.py +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/.random_generator.py +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/.shellscript_functions +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/.tpe.py +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/LICENSE +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/apt-dependencies.txt +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/omniopt +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/omniopt_docker +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/omniopt_evaluate +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/omniopt_plot +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/omniopt_share +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/pylint.rc +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/requirements.txt +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/setup.py +0 -0
- {omniopt2-8701.data → omniopt2-8710.data}/data/bin/test_requirements.txt +0 -0
- {omniopt2-8701.dist-info → omniopt2-8710.dist-info}/WHEEL +0 -0
- {omniopt2-8701.dist-info → omniopt2-8710.dist-info}/licenses/LICENSE +0 -0
- {omniopt2-8701.dist-info → omniopt2-8710.dist-info}/top_level.txt +0 -0
.omniopt.py
CHANGED
|
@@ -545,6 +545,18 @@ logfile_worker_creation_logs: str = f'{log_uuid_dir}_worker_creation_logs'
|
|
|
545
545
|
logfile_trial_index_to_param_logs: str = f'{log_uuid_dir}_trial_index_to_param_logs'
|
|
546
546
|
LOGFILE_DEBUG_GET_NEXT_TRIALS: Union[str, None] = None
|
|
547
547
|
|
|
548
|
+
def error_without_print(text: str) -> None:
|
|
549
|
+
print_debug(text)
|
|
550
|
+
|
|
551
|
+
if get_current_run_folder():
|
|
552
|
+
try:
|
|
553
|
+
with open(get_current_run_folder("oo_errors.txt"), mode="a", encoding="utf-8") as myfile:
|
|
554
|
+
myfile.write(text + "\n\n")
|
|
555
|
+
except (OSError, FileNotFoundError) as e:
|
|
556
|
+
helpers.print_color("red", f"Error: {e}. This may mean that the {get_current_run_folder()} was deleted during the run. Could not write '{text} to {get_current_run_folder()}/oo_errors.txt'")
|
|
557
|
+
sys.exit(99)
|
|
558
|
+
|
|
559
|
+
|
|
548
560
|
def print_red(text: str) -> None:
|
|
549
561
|
helpers.print_color("red", text)
|
|
550
562
|
|
|
@@ -5009,7 +5021,8 @@ def show_pareto_or_error_msg(path_to_calculate: str, res_names: list = arg_resul
|
|
|
5009
5021
|
try:
|
|
5010
5022
|
show_pareto_frontier_data(path_to_calculate, res_names, disable_sixel_and_table)
|
|
5011
5023
|
except Exception as e:
|
|
5012
|
-
|
|
5024
|
+
inner_tb = ''.join(traceback.format_exception(type(e), e, e.__traceback__))
|
|
5025
|
+
print_red(f"show_pareto_frontier_data() failed with exception '{e}':\n{inner_tb}")
|
|
5013
5026
|
else:
|
|
5014
5027
|
print_debug(f"show_pareto_frontier_data will NOT be executed because len(arg_result_names) is {len(arg_result_names)}")
|
|
5015
5028
|
return None
|
|
@@ -7496,7 +7509,7 @@ def finish_previous_jobs(new_msgs: List[str] = []) -> None:
|
|
|
7496
7509
|
|
|
7497
7510
|
jobs_copy = global_vars["jobs"][:]
|
|
7498
7511
|
|
|
7499
|
-
finishing_jobs_start_time = time.time()
|
|
7512
|
+
#finishing_jobs_start_time = time.time()
|
|
7500
7513
|
|
|
7501
7514
|
with ThreadPoolExecutor() as finish_job_executor:
|
|
7502
7515
|
futures = [finish_job_executor.submit(_finish_previous_jobs_helper_check_and_process, (job, trial_index)) for job, trial_index in jobs_copy]
|
|
@@ -7507,11 +7520,11 @@ def finish_previous_jobs(new_msgs: List[str] = []) -> None:
|
|
|
7507
7520
|
except Exception as e:
|
|
7508
7521
|
print_red(f"⚠ Exception in parallel job handling: {e}")
|
|
7509
7522
|
|
|
7510
|
-
finishing_jobs_end_time = time.time()
|
|
7523
|
+
#finishing_jobs_end_time = time.time()
|
|
7511
7524
|
|
|
7512
|
-
finishing_jobs_runtime = finishing_jobs_end_time - finishing_jobs_start_time
|
|
7525
|
+
#finishing_jobs_runtime = finishing_jobs_end_time - finishing_jobs_start_time
|
|
7513
7526
|
|
|
7514
|
-
print_debug(f"Finishing jobs took {finishing_jobs_runtime} second(s)")
|
|
7527
|
+
#print_debug(f"Finishing jobs took {finishing_jobs_runtime} second(s)")
|
|
7515
7528
|
|
|
7516
7529
|
if this_jobs_finished > 0:
|
|
7517
7530
|
save_results_csv()
|
|
@@ -7688,7 +7701,7 @@ def get_ax_client_trial(trial_index: int) -> Optional[ax.core.trial.Trial]:
|
|
|
7688
7701
|
try:
|
|
7689
7702
|
return ax_client.get_trial(trial_index)
|
|
7690
7703
|
except KeyError as e:
|
|
7691
|
-
|
|
7704
|
+
error_without_print(f"get_ax_client_trial: trial_index {trial_index} failed, error: {e}")
|
|
7692
7705
|
return None
|
|
7693
7706
|
|
|
7694
7707
|
def orchestrator_start_trial(parameters: Union[dict, str], trial_index: int) -> None:
|
|
@@ -7833,7 +7846,7 @@ def execute_evaluation(_params: list) -> Optional[int]:
|
|
|
7833
7846
|
_trial = get_ax_client_trial(trial_index)
|
|
7834
7847
|
|
|
7835
7848
|
if _trial is None:
|
|
7836
|
-
|
|
7849
|
+
error_without_print(f"execute_evaluation: _trial was not in execute_evaluation for params {_params}")
|
|
7837
7850
|
return None
|
|
7838
7851
|
|
|
7839
7852
|
def mark_trial_stage(stage: str, error_msg: str) -> None:
|
|
@@ -8123,13 +8136,13 @@ def get_batched_arms(nr_of_jobs_to_get: int) -> list:
|
|
|
8123
8136
|
|
|
8124
8137
|
print_debug(f"get_batched_arms: Attempt {attempts + 1}: requesting 1 more arm")
|
|
8125
8138
|
|
|
8126
|
-
t0 = time.time()
|
|
8139
|
+
#t0 = time.time()
|
|
8127
8140
|
pending_observations = get_pending_observation_features(experiment=ax_client.experiment)
|
|
8128
|
-
dt = time.time() - t0
|
|
8129
|
-
print_debug(f"got pending observations: {pending_observations} (took {dt:.2f} seconds)")
|
|
8141
|
+
#dt = time.time() - t0
|
|
8142
|
+
#print_debug(f"got pending observations: {pending_observations} (took {dt:.2f} seconds)")
|
|
8130
8143
|
|
|
8131
8144
|
try:
|
|
8132
|
-
print_debug("getting global_gs.gen() with n=1")
|
|
8145
|
+
#print_debug("getting global_gs.gen() with n=1")
|
|
8133
8146
|
batched_generator_run: Any = global_gs.gen(
|
|
8134
8147
|
experiment=ax_client.experiment,
|
|
8135
8148
|
n=1,
|
|
@@ -8144,12 +8157,12 @@ def get_batched_arms(nr_of_jobs_to_get: int) -> list:
|
|
|
8144
8157
|
depth = 0
|
|
8145
8158
|
path = "batched_generator_run"
|
|
8146
8159
|
while isinstance(batched_generator_run, (list, tuple)) and len(batched_generator_run) == 1:
|
|
8147
|
-
print_debug(f"Depth {depth}, path {path}, type {type(batched_generator_run).__name__}, length {len(batched_generator_run)}: {batched_generator_run}")
|
|
8160
|
+
#print_debug(f"Depth {depth}, path {path}, type {type(batched_generator_run).__name__}, length {len(batched_generator_run)}: {batched_generator_run}")
|
|
8148
8161
|
batched_generator_run = batched_generator_run[0]
|
|
8149
8162
|
path += "[0]"
|
|
8150
8163
|
depth += 1
|
|
8151
8164
|
|
|
8152
|
-
print_debug(f"Final flat object at depth {depth}, path {path}: {batched_generator_run} (type {type(batched_generator_run).__name__})")
|
|
8165
|
+
#print_debug(f"Final flat object at depth {depth}, path {path}: {batched_generator_run} (type {type(batched_generator_run).__name__})")
|
|
8153
8166
|
|
|
8154
8167
|
new_arms = getattr(batched_generator_run, "arms", [])
|
|
8155
8168
|
if not new_arms:
|
|
@@ -9428,7 +9441,7 @@ def finalize_jobs() -> None:
|
|
|
9428
9441
|
handle_slurm_execution()
|
|
9429
9442
|
|
|
9430
9443
|
def go_through_jobs_that_are_not_completed_yet() -> None:
|
|
9431
|
-
print_debug(f"Waiting for jobs to finish (currently, len(global_vars['jobs']) = {len(global_vars['jobs'])}")
|
|
9444
|
+
#print_debug(f"Waiting for jobs to finish (currently, len(global_vars['jobs']) = {len(global_vars['jobs'])}")
|
|
9432
9445
|
|
|
9433
9446
|
nr_jobs_left = len(global_vars['jobs'])
|
|
9434
9447
|
if nr_jobs_left == 1:
|
|
@@ -545,6 +545,18 @@ logfile_worker_creation_logs: str = f'{log_uuid_dir}_worker_creation_logs'
|
|
|
545
545
|
logfile_trial_index_to_param_logs: str = f'{log_uuid_dir}_trial_index_to_param_logs'
|
|
546
546
|
LOGFILE_DEBUG_GET_NEXT_TRIALS: Union[str, None] = None
|
|
547
547
|
|
|
548
|
+
def error_without_print(text: str) -> None:
|
|
549
|
+
print_debug(text)
|
|
550
|
+
|
|
551
|
+
if get_current_run_folder():
|
|
552
|
+
try:
|
|
553
|
+
with open(get_current_run_folder("oo_errors.txt"), mode="a", encoding="utf-8") as myfile:
|
|
554
|
+
myfile.write(text + "\n\n")
|
|
555
|
+
except (OSError, FileNotFoundError) as e:
|
|
556
|
+
helpers.print_color("red", f"Error: {e}. This may mean that the {get_current_run_folder()} was deleted during the run. Could not write '{text} to {get_current_run_folder()}/oo_errors.txt'")
|
|
557
|
+
sys.exit(99)
|
|
558
|
+
|
|
559
|
+
|
|
548
560
|
def print_red(text: str) -> None:
|
|
549
561
|
helpers.print_color("red", text)
|
|
550
562
|
|
|
@@ -5009,7 +5021,8 @@ def show_pareto_or_error_msg(path_to_calculate: str, res_names: list = arg_resul
|
|
|
5009
5021
|
try:
|
|
5010
5022
|
show_pareto_frontier_data(path_to_calculate, res_names, disable_sixel_and_table)
|
|
5011
5023
|
except Exception as e:
|
|
5012
|
-
|
|
5024
|
+
inner_tb = ''.join(traceback.format_exception(type(e), e, e.__traceback__))
|
|
5025
|
+
print_red(f"show_pareto_frontier_data() failed with exception '{e}':\n{inner_tb}")
|
|
5013
5026
|
else:
|
|
5014
5027
|
print_debug(f"show_pareto_frontier_data will NOT be executed because len(arg_result_names) is {len(arg_result_names)}")
|
|
5015
5028
|
return None
|
|
@@ -7496,7 +7509,7 @@ def finish_previous_jobs(new_msgs: List[str] = []) -> None:
|
|
|
7496
7509
|
|
|
7497
7510
|
jobs_copy = global_vars["jobs"][:]
|
|
7498
7511
|
|
|
7499
|
-
finishing_jobs_start_time = time.time()
|
|
7512
|
+
#finishing_jobs_start_time = time.time()
|
|
7500
7513
|
|
|
7501
7514
|
with ThreadPoolExecutor() as finish_job_executor:
|
|
7502
7515
|
futures = [finish_job_executor.submit(_finish_previous_jobs_helper_check_and_process, (job, trial_index)) for job, trial_index in jobs_copy]
|
|
@@ -7507,11 +7520,11 @@ def finish_previous_jobs(new_msgs: List[str] = []) -> None:
|
|
|
7507
7520
|
except Exception as e:
|
|
7508
7521
|
print_red(f"⚠ Exception in parallel job handling: {e}")
|
|
7509
7522
|
|
|
7510
|
-
finishing_jobs_end_time = time.time()
|
|
7523
|
+
#finishing_jobs_end_time = time.time()
|
|
7511
7524
|
|
|
7512
|
-
finishing_jobs_runtime = finishing_jobs_end_time - finishing_jobs_start_time
|
|
7525
|
+
#finishing_jobs_runtime = finishing_jobs_end_time - finishing_jobs_start_time
|
|
7513
7526
|
|
|
7514
|
-
print_debug(f"Finishing jobs took {finishing_jobs_runtime} second(s)")
|
|
7527
|
+
#print_debug(f"Finishing jobs took {finishing_jobs_runtime} second(s)")
|
|
7515
7528
|
|
|
7516
7529
|
if this_jobs_finished > 0:
|
|
7517
7530
|
save_results_csv()
|
|
@@ -7688,7 +7701,7 @@ def get_ax_client_trial(trial_index: int) -> Optional[ax.core.trial.Trial]:
|
|
|
7688
7701
|
try:
|
|
7689
7702
|
return ax_client.get_trial(trial_index)
|
|
7690
7703
|
except KeyError as e:
|
|
7691
|
-
|
|
7704
|
+
error_without_print(f"get_ax_client_trial: trial_index {trial_index} failed, error: {e}")
|
|
7692
7705
|
return None
|
|
7693
7706
|
|
|
7694
7707
|
def orchestrator_start_trial(parameters: Union[dict, str], trial_index: int) -> None:
|
|
@@ -7833,7 +7846,7 @@ def execute_evaluation(_params: list) -> Optional[int]:
|
|
|
7833
7846
|
_trial = get_ax_client_trial(trial_index)
|
|
7834
7847
|
|
|
7835
7848
|
if _trial is None:
|
|
7836
|
-
|
|
7849
|
+
error_without_print(f"execute_evaluation: _trial was not in execute_evaluation for params {_params}")
|
|
7837
7850
|
return None
|
|
7838
7851
|
|
|
7839
7852
|
def mark_trial_stage(stage: str, error_msg: str) -> None:
|
|
@@ -8123,13 +8136,13 @@ def get_batched_arms(nr_of_jobs_to_get: int) -> list:
|
|
|
8123
8136
|
|
|
8124
8137
|
print_debug(f"get_batched_arms: Attempt {attempts + 1}: requesting 1 more arm")
|
|
8125
8138
|
|
|
8126
|
-
t0 = time.time()
|
|
8139
|
+
#t0 = time.time()
|
|
8127
8140
|
pending_observations = get_pending_observation_features(experiment=ax_client.experiment)
|
|
8128
|
-
dt = time.time() - t0
|
|
8129
|
-
print_debug(f"got pending observations: {pending_observations} (took {dt:.2f} seconds)")
|
|
8141
|
+
#dt = time.time() - t0
|
|
8142
|
+
#print_debug(f"got pending observations: {pending_observations} (took {dt:.2f} seconds)")
|
|
8130
8143
|
|
|
8131
8144
|
try:
|
|
8132
|
-
print_debug("getting global_gs.gen() with n=1")
|
|
8145
|
+
#print_debug("getting global_gs.gen() with n=1")
|
|
8133
8146
|
batched_generator_run: Any = global_gs.gen(
|
|
8134
8147
|
experiment=ax_client.experiment,
|
|
8135
8148
|
n=1,
|
|
@@ -8144,12 +8157,12 @@ def get_batched_arms(nr_of_jobs_to_get: int) -> list:
|
|
|
8144
8157
|
depth = 0
|
|
8145
8158
|
path = "batched_generator_run"
|
|
8146
8159
|
while isinstance(batched_generator_run, (list, tuple)) and len(batched_generator_run) == 1:
|
|
8147
|
-
print_debug(f"Depth {depth}, path {path}, type {type(batched_generator_run).__name__}, length {len(batched_generator_run)}: {batched_generator_run}")
|
|
8160
|
+
#print_debug(f"Depth {depth}, path {path}, type {type(batched_generator_run).__name__}, length {len(batched_generator_run)}: {batched_generator_run}")
|
|
8148
8161
|
batched_generator_run = batched_generator_run[0]
|
|
8149
8162
|
path += "[0]"
|
|
8150
8163
|
depth += 1
|
|
8151
8164
|
|
|
8152
|
-
print_debug(f"Final flat object at depth {depth}, path {path}: {batched_generator_run} (type {type(batched_generator_run).__name__})")
|
|
8165
|
+
#print_debug(f"Final flat object at depth {depth}, path {path}: {batched_generator_run} (type {type(batched_generator_run).__name__})")
|
|
8153
8166
|
|
|
8154
8167
|
new_arms = getattr(batched_generator_run, "arms", [])
|
|
8155
8168
|
if not new_arms:
|
|
@@ -9428,7 +9441,7 @@ def finalize_jobs() -> None:
|
|
|
9428
9441
|
handle_slurm_execution()
|
|
9429
9442
|
|
|
9430
9443
|
def go_through_jobs_that_are_not_completed_yet() -> None:
|
|
9431
|
-
print_debug(f"Waiting for jobs to finish (currently, len(global_vars['jobs']) = {len(global_vars['jobs'])}")
|
|
9444
|
+
#print_debug(f"Waiting for jobs to finish (currently, len(global_vars['jobs']) = {len(global_vars['jobs'])}")
|
|
9432
9445
|
|
|
9433
9446
|
nr_jobs_left = len(global_vars['jobs'])
|
|
9434
9447
|
if nr_jobs_left == 1:
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
|
|
4
4
|
.gitignore,sha256=3A7BlH7vV-liv6jRnjoLhPFCBWO_b-mxjTPXiNIQdQs,3802
|
|
5
5
|
.helpers.py,sha256=4YPKu3HBjV9SWUhOGlnmBPLtvn2ofbUPqwQrDIPegmM,30848
|
|
6
|
-
.omniopt.py,sha256=
|
|
6
|
+
.omniopt.py,sha256=vHNUnluNp97XB9k1GO2biH8xywZrm32CEFEdQLkEaZ8,446585
|
|
7
7
|
.omniopt_plot_cpu_ram_usage.py,sha256=DbOAmdrbcZtsMnHJgHfeRngjtv6zX5J0axyua_dYezc,3932
|
|
8
8
|
.omniopt_plot_general.py,sha256=3iy-bPef8I5rTB3KRz-TuleMdgKDmVZ6c8LuNQhNwu0,6810
|
|
9
9
|
.omniopt_plot_gpu_usage.py,sha256=ojxVicwSoiyl7f3c-6lLuT2EpyPcSJKEcbp75LgDY2k,5107
|
|
@@ -26,46 +26,46 @@ omniopt_docker,sha256=XyEGZ71l-tUlAYUluVF39fGO3NLDRa8UyrwxmAsXWNI,3542
|
|
|
26
26
|
omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
|
|
27
27
|
omniopt_plot,sha256=ze6Dz2k0w5jyUnfatAA7dk59nzQjKC_G36tDvJGWsfA,13696
|
|
28
28
|
omniopt_share,sha256=2KZcTjN_7vcxNjb4sLLiWgUc38pl2-6-Qwmgq6_nTb0,13856
|
|
29
|
-
pyproject.toml,sha256=
|
|
29
|
+
pyproject.toml,sha256=Os8ICdXlWnSNU3yvPSsaq5omfgNmujW8rDBZEEqOebo,397
|
|
30
30
|
requirements.txt,sha256=iL8Nj0cyoHnj0Uk1jzVUr1DnaosD-nXZYVGXnSW2B8A,299
|
|
31
31
|
setup.cfg,sha256=HEc8uu6NpfxG5_AVh5SvXOpEFMNKPPPxgMIAH144vT4,38
|
|
32
32
|
test_requirements.txt,sha256=jpyZzAwbWR_qnoRqWvpBB5MUjIX9jVwynX2D-B-r8aA,487
|
|
33
33
|
.tests/pylint.rc,sha256=ZGtZjVgJtK_6tdwgscJneS-LUeDASjSVVz6veCkp9rw,22631
|
|
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-
|
|
62
|
-
omniopt2-
|
|
63
|
-
omniopt2.egg-info/PKG-INFO,sha256=
|
|
34
|
+
omniopt2-8710.data/data/bin/.colorfunctions.sh,sha256=xxc08V3Fh_0Je20fkJMRO14u9VCSvMyOiMaDfioEyCY,1098
|
|
35
|
+
omniopt2-8710.data/data/bin/.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
|
|
36
|
+
omniopt2-8710.data/data/bin/.helpers.py,sha256=4YPKu3HBjV9SWUhOGlnmBPLtvn2ofbUPqwQrDIPegmM,30848
|
|
37
|
+
omniopt2-8710.data/data/bin/.omniopt.py,sha256=vHNUnluNp97XB9k1GO2biH8xywZrm32CEFEdQLkEaZ8,446585
|
|
38
|
+
omniopt2-8710.data/data/bin/.omniopt_plot_cpu_ram_usage.py,sha256=DbOAmdrbcZtsMnHJgHfeRngjtv6zX5J0axyua_dYezc,3932
|
|
39
|
+
omniopt2-8710.data/data/bin/.omniopt_plot_general.py,sha256=3iy-bPef8I5rTB3KRz-TuleMdgKDmVZ6c8LuNQhNwu0,6810
|
|
40
|
+
omniopt2-8710.data/data/bin/.omniopt_plot_gpu_usage.py,sha256=ojxVicwSoiyl7f3c-6lLuT2EpyPcSJKEcbp75LgDY2k,5107
|
|
41
|
+
omniopt2-8710.data/data/bin/.omniopt_plot_kde.py,sha256=uRLWr72TDKvj3AqJ0O0AvkKZ1ok1O1QpXnbfQQdo0nA,6873
|
|
42
|
+
omniopt2-8710.data/data/bin/.omniopt_plot_scatter.py,sha256=b0_CIqgyi6PztaUVJRL9X9XBTaOonh-yDH2hRxMGkH0,8403
|
|
43
|
+
omniopt2-8710.data/data/bin/.omniopt_plot_scatter_generation_method.py,sha256=rgKY_w1E516c9UucVaEvaKd8tCnoUq9xg-RrYSDzYEQ,4289
|
|
44
|
+
omniopt2-8710.data/data/bin/.omniopt_plot_scatter_hex.py,sha256=UKjw40c1eumgEcf0xqB-_SakX5PB6HD3u4VwBxbsgQo,10279
|
|
45
|
+
omniopt2-8710.data/data/bin/.omniopt_plot_time_and_exit_code.py,sha256=WUyl2uI59wsC1eSX_5uJHOrqcF-s5cUDIEu8u3IFMLU,6462
|
|
46
|
+
omniopt2-8710.data/data/bin/.omniopt_plot_trial_index_result.py,sha256=Xlo_dYTQNnxPhYakmgMM58CCcW9gUoXZ3gLap9RScTY,4578
|
|
47
|
+
omniopt2-8710.data/data/bin/.omniopt_plot_worker.py,sha256=VuluQq4W6KRR5RU08dxmDSFk5mbfDRkRJQFwwcLgAGw,4524
|
|
48
|
+
omniopt2-8710.data/data/bin/.random_generator.py,sha256=ezBBUXpez_QaGdpCglMcJ0KZPdQP0XdX5gnLzO1xhwU,2987
|
|
49
|
+
omniopt2-8710.data/data/bin/.shellscript_functions,sha256=DxcCtTZBRxFp6P6EesUM4JcxqeCSsZOb7rLXbmBdQt8,13628
|
|
50
|
+
omniopt2-8710.data/data/bin/.tpe.py,sha256=93yjviAtxPRYUCpSIShW_H3QQ5JPNcnXNjF0g8zc7Wc,6766
|
|
51
|
+
omniopt2-8710.data/data/bin/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
52
|
+
omniopt2-8710.data/data/bin/apt-dependencies.txt,sha256=X5tBB8ZLW9XaFtRh8B7C2pIkSoxNNawqioDr0QZAtuM,149
|
|
53
|
+
omniopt2-8710.data/data/bin/omniopt,sha256=p6rZSb5AYjmArgK-A6yOuDeHPxyoBdfpoHxh7raUrHw,51829
|
|
54
|
+
omniopt2-8710.data/data/bin/omniopt_docker,sha256=XyEGZ71l-tUlAYUluVF39fGO3NLDRa8UyrwxmAsXWNI,3542
|
|
55
|
+
omniopt2-8710.data/data/bin/omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
|
|
56
|
+
omniopt2-8710.data/data/bin/omniopt_plot,sha256=ze6Dz2k0w5jyUnfatAA7dk59nzQjKC_G36tDvJGWsfA,13696
|
|
57
|
+
omniopt2-8710.data/data/bin/omniopt_share,sha256=2KZcTjN_7vcxNjb4sLLiWgUc38pl2-6-Qwmgq6_nTb0,13856
|
|
58
|
+
omniopt2-8710.data/data/bin/pylint.rc,sha256=ZGtZjVgJtK_6tdwgscJneS-LUeDASjSVVz6veCkp9rw,22631
|
|
59
|
+
omniopt2-8710.data/data/bin/requirements.txt,sha256=iL8Nj0cyoHnj0Uk1jzVUr1DnaosD-nXZYVGXnSW2B8A,299
|
|
60
|
+
omniopt2-8710.data/data/bin/setup.py,sha256=zg7k4jeHXEdaGWGeB1mPC14fFj-hqz1vNimnU0JcMyk,4632
|
|
61
|
+
omniopt2-8710.data/data/bin/test_requirements.txt,sha256=jpyZzAwbWR_qnoRqWvpBB5MUjIX9jVwynX2D-B-r8aA,487
|
|
62
|
+
omniopt2-8710.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
63
|
+
omniopt2.egg-info/PKG-INFO,sha256=W2IAhuPoDIEKbCEshW5BG4TjxKaLz6CmIy3BCpZ7qWg,5725
|
|
64
64
|
omniopt2.egg-info/SOURCES.txt,sha256=2mSVIhM8Ncyl5_s8ZFBlb6qjRDbTCQmV9FwVVjp5ROE,795
|
|
65
65
|
omniopt2.egg-info/dependency_links.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
66
66
|
omniopt2.egg-info/requires.txt,sha256=0gjAtya3hgDAlLXSjgndq_waff89WU6_cQ6jlLyFn2w,786
|
|
67
67
|
omniopt2.egg-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
68
|
-
omniopt2-
|
|
69
|
-
omniopt2-
|
|
70
|
-
omniopt2-
|
|
71
|
-
omniopt2-
|
|
68
|
+
omniopt2-8710.dist-info/METADATA,sha256=W2IAhuPoDIEKbCEshW5BG4TjxKaLz6CmIy3BCpZ7qWg,5725
|
|
69
|
+
omniopt2-8710.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
70
|
+
omniopt2-8710.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
71
|
+
omniopt2-8710.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-8701.data → omniopt2-8710.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
|
|
File without changes
|