omniopt2 8496__py3-none-any.whl → 8507__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.
- .gitignore +1 -0
- .omniopt.py +21 -21
- omniopt +16 -4
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/.omniopt.py +21 -21
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/omniopt +16 -4
- {omniopt2-8496.dist-info → omniopt2-8507.dist-info}/METADATA +1 -1
- {omniopt2-8496.dist-info → omniopt2-8507.dist-info}/RECORD +38 -38
- omniopt2.egg-info/PKG-INFO +1 -1
- pyproject.toml +1 -1
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/.colorfunctions.sh +0 -0
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/.general.sh +0 -0
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/.helpers.py +0 -0
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/.omniopt_plot_cpu_ram_usage.py +0 -0
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/.omniopt_plot_general.py +0 -0
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/.omniopt_plot_gpu_usage.py +0 -0
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/.omniopt_plot_kde.py +0 -0
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/.omniopt_plot_scatter.py +0 -0
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/.omniopt_plot_scatter_generation_method.py +0 -0
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/.omniopt_plot_scatter_hex.py +0 -0
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/.omniopt_plot_time_and_exit_code.py +0 -0
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/.omniopt_plot_trial_index_result.py +0 -0
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/.omniopt_plot_worker.py +0 -0
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/.random_generator.py +0 -0
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/.shellscript_functions +0 -0
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/.tpe.py +0 -0
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/LICENSE +0 -0
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/apt-dependencies.txt +0 -0
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/omniopt_docker +0 -0
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/omniopt_evaluate +0 -0
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/omniopt_plot +0 -0
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/omniopt_share +0 -0
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/pylint.rc +0 -0
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/requirements.txt +0 -0
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/setup.py +0 -0
- {omniopt2-8496.data → omniopt2-8507.data}/data/bin/test_requirements.txt +0 -0
- {omniopt2-8496.dist-info → omniopt2-8507.dist-info}/WHEEL +0 -0
- {omniopt2-8496.dist-info → omniopt2-8507.dist-info}/licenses/LICENSE +0 -0
- {omniopt2-8496.dist-info → omniopt2-8507.dist-info}/top_level.txt +0 -0
.gitignore
CHANGED
.omniopt.py
CHANGED
|
@@ -822,6 +822,7 @@ class ConfigLoader:
|
|
|
822
822
|
run_program_once: str
|
|
823
823
|
mem_gb: int
|
|
824
824
|
flame_graph: bool
|
|
825
|
+
memray: bool
|
|
825
826
|
continue_previous_job: Optional[str]
|
|
826
827
|
calculate_pareto_front_of_job: Optional[List[str]]
|
|
827
828
|
revert_to_random_when_seemingly_exhausted: bool
|
|
@@ -983,6 +984,7 @@ class ConfigLoader:
|
|
|
983
984
|
debug.add_argument('--verbose_break_run_search_table', help='Verbose logging for break_run_search', action='store_true', default=False)
|
|
984
985
|
debug.add_argument('--debug', help='Enable debugging', action='store_true', default=False)
|
|
985
986
|
debug.add_argument('--flame_graph', help='Enable flame-graphing. Makes everything slower, but creates a flame graph', action='store_true', default=False)
|
|
987
|
+
debug.add_argument('--memray', help='Use memray to show memory usage', action='store_true', default=False)
|
|
986
988
|
debug.add_argument('--no_sleep', help='Disables sleeping for fast job generation (not to be used on HPC)', action='store_true', default=False)
|
|
987
989
|
debug.add_argument('--tests', help='Run simple internal tests', action='store_true', default=False)
|
|
988
990
|
debug.add_argument('--show_worker_percentage_table_at_end', help='Show a table of percentage of usage of max worker over time', action='store_true', default=False)
|
|
@@ -996,7 +998,6 @@ class ConfigLoader:
|
|
|
996
998
|
debug.add_argument('--runtime_debug', help='Logs which functions use most of the time', action='store_true', default=False)
|
|
997
999
|
debug.add_argument('--debug_stack_regex', help='Only print debug messages if call stack matches any regex', type=str, default='')
|
|
998
1000
|
debug.add_argument('--debug_stack_trace_regex', help='Show compact call stack with arrows if any function in stack matches regex', type=str, default=None)
|
|
999
|
-
|
|
1000
1001
|
debug.add_argument('--show_func_name', help='Show func name before each execution and when it is done', action='store_true', default=False)
|
|
1001
1002
|
|
|
1002
1003
|
def load_config(self: Any, config_path: str, file_format: str) -> dict:
|
|
@@ -7860,32 +7861,32 @@ def get_batched_arms(nr_of_jobs_to_get: int) -> list:
|
|
|
7860
7861
|
print_red("get_batched_arms: ax_client was None")
|
|
7861
7862
|
return []
|
|
7862
7863
|
|
|
7863
|
-
# Experiment-Status laden
|
|
7864
7864
|
load_experiment_state()
|
|
7865
7865
|
|
|
7866
|
-
while len(batched_arms)
|
|
7866
|
+
while len(batched_arms) < nr_of_jobs_to_get:
|
|
7867
7867
|
if attempts > args.max_attempts_for_generation:
|
|
7868
7868
|
print_debug(f"get_batched_arms: Stopped after {attempts} attempts: could not generate enough arms "
|
|
7869
7869
|
f"(got {len(batched_arms)} out of {nr_of_jobs_to_get}).")
|
|
7870
7870
|
break
|
|
7871
7871
|
|
|
7872
|
-
|
|
7873
|
-
print_debug(f"get_batched_arms: Attempt {attempts + 1}: requesting {remaining} more arm(s).")
|
|
7872
|
+
print_debug(f"get_batched_arms: Attempt {attempts + 1}: requesting 1 more arm")
|
|
7874
7873
|
|
|
7875
|
-
print_debug("get pending observations")
|
|
7876
7874
|
t0 = time.time()
|
|
7877
7875
|
pending_observations = get_pending_observation_features(experiment=ax_client.experiment)
|
|
7878
7876
|
dt = time.time() - t0
|
|
7879
|
-
print_debug(f"got pending observations
|
|
7880
|
-
|
|
7881
|
-
|
|
7882
|
-
|
|
7883
|
-
|
|
7884
|
-
|
|
7885
|
-
|
|
7886
|
-
|
|
7887
|
-
|
|
7888
|
-
|
|
7877
|
+
print_debug(f"got pending observations (took {dt:.2f} seconds)")
|
|
7878
|
+
|
|
7879
|
+
try:
|
|
7880
|
+
print_debug("getting global_gs.gen() with n=1")
|
|
7881
|
+
batched_generator_run = global_gs.gen(
|
|
7882
|
+
experiment=ax_client.experiment,
|
|
7883
|
+
n=1,
|
|
7884
|
+
pending_observations=pending_observations,
|
|
7885
|
+
)
|
|
7886
|
+
print_debug(f"got global_gs.gen(): {batched_generator_run}")
|
|
7887
|
+
except Exception as e:
|
|
7888
|
+
print_debug(f"global_gs.gen failed: {e}")
|
|
7889
|
+
break
|
|
7889
7890
|
|
|
7890
7891
|
depth = 0
|
|
7891
7892
|
path = "batched_generator_run"
|
|
@@ -7897,15 +7898,13 @@ def get_batched_arms(nr_of_jobs_to_get: int) -> list:
|
|
|
7897
7898
|
|
|
7898
7899
|
print_debug(f"Final flat object at depth {depth}, path {path}: {batched_generator_run} (type {type(batched_generator_run).__name__})")
|
|
7899
7900
|
|
|
7900
|
-
|
|
7901
|
-
new_arms = batched_generator_run.arms
|
|
7902
|
-
print_debug(f"new_arms: {new_arms}")
|
|
7901
|
+
new_arms = getattr(batched_generator_run, "arms", [])
|
|
7903
7902
|
if not new_arms:
|
|
7904
7903
|
print_debug("get_batched_arms: No new arms were generated in this attempt.")
|
|
7905
7904
|
else:
|
|
7906
|
-
print_debug(f"get_batched_arms: Generated {len(new_arms)} new arm(s),
|
|
7905
|
+
print_debug(f"get_batched_arms: Generated {len(new_arms)} new arm(s), now at {len(batched_arms) + len(new_arms)} of {nr_of_jobs_to_get}.")
|
|
7906
|
+
batched_arms.extend(new_arms)
|
|
7907
7907
|
|
|
7908
|
-
batched_arms.extend(new_arms)
|
|
7909
7908
|
attempts += 1
|
|
7910
7909
|
|
|
7911
7910
|
print_debug(f"get_batched_arms: Finished with {len(batched_arms)} arm(s) after {attempts} attempt(s).")
|
|
@@ -11179,6 +11178,7 @@ def main_outside() -> None:
|
|
|
11179
11178
|
|
|
11180
11179
|
fool_linter(args.num_cpus_main_job)
|
|
11181
11180
|
fool_linter(args.flame_graph)
|
|
11181
|
+
fool_linter(args.memray)
|
|
11182
11182
|
|
|
11183
11183
|
with warnings.catch_warnings():
|
|
11184
11184
|
warnings.simplefilter("ignore")
|
omniopt
CHANGED
|
@@ -1016,6 +1016,10 @@ $complex_options_str
|
|
|
1016
1016
|
args_string+=" --help "
|
|
1017
1017
|
;;
|
|
1018
1018
|
|
|
1019
|
+
--memray)
|
|
1020
|
+
export RUN_WITH_MEMRAY=1
|
|
1021
|
+
;;
|
|
1022
|
+
|
|
1019
1023
|
--flame_graph)
|
|
1020
1024
|
export RUN_WITH_PYSPY=1
|
|
1021
1025
|
;;
|
|
@@ -1639,14 +1643,22 @@ EOF
|
|
|
1639
1643
|
fi
|
|
1640
1644
|
|
|
1641
1645
|
if [[ -z $RUN_WITH_COVERAGE ]]; then
|
|
1642
|
-
if [[ -
|
|
1643
|
-
stdbuf -e 0 -o 0 python3 "$SCRIPT_DIR/.omniopt.py" $args_string
|
|
1644
|
-
EXIT_CODE=$?
|
|
1645
|
-
else
|
|
1646
|
+
if [[ -n $RUN_WITH_PYSPY ]]; then
|
|
1646
1647
|
echo "Starting OmniOpt with Py-Spy"
|
|
1647
1648
|
pip install py-spy
|
|
1648
1649
|
stdbuf -e 0 -o 0 py-spy record --rate 10 --subprocesses --native --output "$RUN_UUID.svg" python3 -- "$SCRIPT_DIR/.omniopt.py" $args_string
|
|
1649
1650
|
EXIT_CODE=$?
|
|
1651
|
+
elif [[ -n $RUN_WITH_MEMRAY ]]; then
|
|
1652
|
+
echo "Starting OmniOpt with MemRay."
|
|
1653
|
+
echo "Check later on with 'memray flamegraph $RUN_UUID.bin'"
|
|
1654
|
+
export PYTORCH_NO_CUDA_MEMORY_CACHING=1
|
|
1655
|
+
export PYTHONFAULTHANDLER=1
|
|
1656
|
+
pip install memray
|
|
1657
|
+
stdbuf -e 0 -o 0 memray run -o "$RUN_UUID.bin" -- "$SCRIPT_DIR/.omniopt.py" $args_string
|
|
1658
|
+
EXIT_CODE=$?
|
|
1659
|
+
else
|
|
1660
|
+
stdbuf -e 0 -o 0 python3 "$SCRIPT_DIR/.omniopt.py" $args_string
|
|
1661
|
+
EXIT_CODE=$?
|
|
1650
1662
|
fi
|
|
1651
1663
|
else
|
|
1652
1664
|
echo "Using coverage run -p because \$RUN_WITH_COVERAGE is set"
|
|
@@ -822,6 +822,7 @@ class ConfigLoader:
|
|
|
822
822
|
run_program_once: str
|
|
823
823
|
mem_gb: int
|
|
824
824
|
flame_graph: bool
|
|
825
|
+
memray: bool
|
|
825
826
|
continue_previous_job: Optional[str]
|
|
826
827
|
calculate_pareto_front_of_job: Optional[List[str]]
|
|
827
828
|
revert_to_random_when_seemingly_exhausted: bool
|
|
@@ -983,6 +984,7 @@ class ConfigLoader:
|
|
|
983
984
|
debug.add_argument('--verbose_break_run_search_table', help='Verbose logging for break_run_search', action='store_true', default=False)
|
|
984
985
|
debug.add_argument('--debug', help='Enable debugging', action='store_true', default=False)
|
|
985
986
|
debug.add_argument('--flame_graph', help='Enable flame-graphing. Makes everything slower, but creates a flame graph', action='store_true', default=False)
|
|
987
|
+
debug.add_argument('--memray', help='Use memray to show memory usage', action='store_true', default=False)
|
|
986
988
|
debug.add_argument('--no_sleep', help='Disables sleeping for fast job generation (not to be used on HPC)', action='store_true', default=False)
|
|
987
989
|
debug.add_argument('--tests', help='Run simple internal tests', action='store_true', default=False)
|
|
988
990
|
debug.add_argument('--show_worker_percentage_table_at_end', help='Show a table of percentage of usage of max worker over time', action='store_true', default=False)
|
|
@@ -996,7 +998,6 @@ class ConfigLoader:
|
|
|
996
998
|
debug.add_argument('--runtime_debug', help='Logs which functions use most of the time', action='store_true', default=False)
|
|
997
999
|
debug.add_argument('--debug_stack_regex', help='Only print debug messages if call stack matches any regex', type=str, default='')
|
|
998
1000
|
debug.add_argument('--debug_stack_trace_regex', help='Show compact call stack with arrows if any function in stack matches regex', type=str, default=None)
|
|
999
|
-
|
|
1000
1001
|
debug.add_argument('--show_func_name', help='Show func name before each execution and when it is done', action='store_true', default=False)
|
|
1001
1002
|
|
|
1002
1003
|
def load_config(self: Any, config_path: str, file_format: str) -> dict:
|
|
@@ -7860,32 +7861,32 @@ def get_batched_arms(nr_of_jobs_to_get: int) -> list:
|
|
|
7860
7861
|
print_red("get_batched_arms: ax_client was None")
|
|
7861
7862
|
return []
|
|
7862
7863
|
|
|
7863
|
-
# Experiment-Status laden
|
|
7864
7864
|
load_experiment_state()
|
|
7865
7865
|
|
|
7866
|
-
while len(batched_arms)
|
|
7866
|
+
while len(batched_arms) < nr_of_jobs_to_get:
|
|
7867
7867
|
if attempts > args.max_attempts_for_generation:
|
|
7868
7868
|
print_debug(f"get_batched_arms: Stopped after {attempts} attempts: could not generate enough arms "
|
|
7869
7869
|
f"(got {len(batched_arms)} out of {nr_of_jobs_to_get}).")
|
|
7870
7870
|
break
|
|
7871
7871
|
|
|
7872
|
-
|
|
7873
|
-
print_debug(f"get_batched_arms: Attempt {attempts + 1}: requesting {remaining} more arm(s).")
|
|
7872
|
+
print_debug(f"get_batched_arms: Attempt {attempts + 1}: requesting 1 more arm")
|
|
7874
7873
|
|
|
7875
|
-
print_debug("get pending observations")
|
|
7876
7874
|
t0 = time.time()
|
|
7877
7875
|
pending_observations = get_pending_observation_features(experiment=ax_client.experiment)
|
|
7878
7876
|
dt = time.time() - t0
|
|
7879
|
-
print_debug(f"got pending observations
|
|
7880
|
-
|
|
7881
|
-
|
|
7882
|
-
|
|
7883
|
-
|
|
7884
|
-
|
|
7885
|
-
|
|
7886
|
-
|
|
7887
|
-
|
|
7888
|
-
|
|
7877
|
+
print_debug(f"got pending observations (took {dt:.2f} seconds)")
|
|
7878
|
+
|
|
7879
|
+
try:
|
|
7880
|
+
print_debug("getting global_gs.gen() with n=1")
|
|
7881
|
+
batched_generator_run = global_gs.gen(
|
|
7882
|
+
experiment=ax_client.experiment,
|
|
7883
|
+
n=1,
|
|
7884
|
+
pending_observations=pending_observations,
|
|
7885
|
+
)
|
|
7886
|
+
print_debug(f"got global_gs.gen(): {batched_generator_run}")
|
|
7887
|
+
except Exception as e:
|
|
7888
|
+
print_debug(f"global_gs.gen failed: {e}")
|
|
7889
|
+
break
|
|
7889
7890
|
|
|
7890
7891
|
depth = 0
|
|
7891
7892
|
path = "batched_generator_run"
|
|
@@ -7897,15 +7898,13 @@ def get_batched_arms(nr_of_jobs_to_get: int) -> list:
|
|
|
7897
7898
|
|
|
7898
7899
|
print_debug(f"Final flat object at depth {depth}, path {path}: {batched_generator_run} (type {type(batched_generator_run).__name__})")
|
|
7899
7900
|
|
|
7900
|
-
|
|
7901
|
-
new_arms = batched_generator_run.arms
|
|
7902
|
-
print_debug(f"new_arms: {new_arms}")
|
|
7901
|
+
new_arms = getattr(batched_generator_run, "arms", [])
|
|
7903
7902
|
if not new_arms:
|
|
7904
7903
|
print_debug("get_batched_arms: No new arms were generated in this attempt.")
|
|
7905
7904
|
else:
|
|
7906
|
-
print_debug(f"get_batched_arms: Generated {len(new_arms)} new arm(s),
|
|
7905
|
+
print_debug(f"get_batched_arms: Generated {len(new_arms)} new arm(s), now at {len(batched_arms) + len(new_arms)} of {nr_of_jobs_to_get}.")
|
|
7906
|
+
batched_arms.extend(new_arms)
|
|
7907
7907
|
|
|
7908
|
-
batched_arms.extend(new_arms)
|
|
7909
7908
|
attempts += 1
|
|
7910
7909
|
|
|
7911
7910
|
print_debug(f"get_batched_arms: Finished with {len(batched_arms)} arm(s) after {attempts} attempt(s).")
|
|
@@ -11179,6 +11178,7 @@ def main_outside() -> None:
|
|
|
11179
11178
|
|
|
11180
11179
|
fool_linter(args.num_cpus_main_job)
|
|
11181
11180
|
fool_linter(args.flame_graph)
|
|
11181
|
+
fool_linter(args.memray)
|
|
11182
11182
|
|
|
11183
11183
|
with warnings.catch_warnings():
|
|
11184
11184
|
warnings.simplefilter("ignore")
|
|
@@ -1016,6 +1016,10 @@ $complex_options_str
|
|
|
1016
1016
|
args_string+=" --help "
|
|
1017
1017
|
;;
|
|
1018
1018
|
|
|
1019
|
+
--memray)
|
|
1020
|
+
export RUN_WITH_MEMRAY=1
|
|
1021
|
+
;;
|
|
1022
|
+
|
|
1019
1023
|
--flame_graph)
|
|
1020
1024
|
export RUN_WITH_PYSPY=1
|
|
1021
1025
|
;;
|
|
@@ -1639,14 +1643,22 @@ EOF
|
|
|
1639
1643
|
fi
|
|
1640
1644
|
|
|
1641
1645
|
if [[ -z $RUN_WITH_COVERAGE ]]; then
|
|
1642
|
-
if [[ -
|
|
1643
|
-
stdbuf -e 0 -o 0 python3 "$SCRIPT_DIR/.omniopt.py" $args_string
|
|
1644
|
-
EXIT_CODE=$?
|
|
1645
|
-
else
|
|
1646
|
+
if [[ -n $RUN_WITH_PYSPY ]]; then
|
|
1646
1647
|
echo "Starting OmniOpt with Py-Spy"
|
|
1647
1648
|
pip install py-spy
|
|
1648
1649
|
stdbuf -e 0 -o 0 py-spy record --rate 10 --subprocesses --native --output "$RUN_UUID.svg" python3 -- "$SCRIPT_DIR/.omniopt.py" $args_string
|
|
1649
1650
|
EXIT_CODE=$?
|
|
1651
|
+
elif [[ -n $RUN_WITH_MEMRAY ]]; then
|
|
1652
|
+
echo "Starting OmniOpt with MemRay."
|
|
1653
|
+
echo "Check later on with 'memray flamegraph $RUN_UUID.bin'"
|
|
1654
|
+
export PYTORCH_NO_CUDA_MEMORY_CACHING=1
|
|
1655
|
+
export PYTHONFAULTHANDLER=1
|
|
1656
|
+
pip install memray
|
|
1657
|
+
stdbuf -e 0 -o 0 memray run -o "$RUN_UUID.bin" -- "$SCRIPT_DIR/.omniopt.py" $args_string
|
|
1658
|
+
EXIT_CODE=$?
|
|
1659
|
+
else
|
|
1660
|
+
stdbuf -e 0 -o 0 python3 "$SCRIPT_DIR/.omniopt.py" $args_string
|
|
1661
|
+
EXIT_CODE=$?
|
|
1650
1662
|
fi
|
|
1651
1663
|
else
|
|
1652
1664
|
echo "Using coverage run -p because \$RUN_WITH_COVERAGE is set"
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
.colorfunctions.sh,sha256=xxc08V3Fh_0Je20fkJMRO14u9VCSvMyOiMaDfioEyCY,1098
|
|
2
2
|
.dockerignore,sha256=vtgV4tvVZdmusf1z7MYscSBo_UTtHMG6T7Knb4llBvo,11
|
|
3
3
|
.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
|
|
4
|
-
.gitignore,sha256=
|
|
4
|
+
.gitignore,sha256=cESqSNFIy9PkCMheam1b1MuZmthhjnp-V6Z3lntvBmg,3782
|
|
5
5
|
.helpers.py,sha256=R9gljJYT8gg4ylxyGf07nt0xfGMIISyNAVfpjw2uMqM,30868
|
|
6
|
-
.omniopt.py,sha256=
|
|
6
|
+
.omniopt.py,sha256=Pv5rzG3bIKsx68uHaIpdoKTeA6225koCr9X4XDfAGd4,438984
|
|
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
|
|
@@ -21,51 +21,51 @@ LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
|
21
21
|
MANIFEST.in,sha256=L3QBXyL1TtyWxbAPsfjZdCfpeBrRuI5MSgdnvwdQ22Q,24
|
|
22
22
|
README.md,sha256=WJxay4TRM8wfK_k5C01SlizLUHgKqlMwa_PQwAxj-As,3221
|
|
23
23
|
apt-dependencies.txt,sha256=X5tBB8ZLW9XaFtRh8B7C2pIkSoxNNawqioDr0QZAtuM,149
|
|
24
|
-
omniopt,sha256=
|
|
24
|
+
omniopt,sha256=p6rZSb5AYjmArgK-A6yOuDeHPxyoBdfpoHxh7raUrHw,51829
|
|
25
25
|
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=eIq8RlDDkoGLWTvJ4uINPDCkm20MxnFtOePehRApH98,397
|
|
30
30
|
requirements.txt,sha256=0ViG5vdrDP--nr7mbZbV0ayJc6a5APNlTiMqGEZB6qE,292
|
|
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-8507.data/data/bin/.colorfunctions.sh,sha256=xxc08V3Fh_0Je20fkJMRO14u9VCSvMyOiMaDfioEyCY,1098
|
|
35
|
+
omniopt2-8507.data/data/bin/.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
|
|
36
|
+
omniopt2-8507.data/data/bin/.helpers.py,sha256=R9gljJYT8gg4ylxyGf07nt0xfGMIISyNAVfpjw2uMqM,30868
|
|
37
|
+
omniopt2-8507.data/data/bin/.omniopt.py,sha256=Pv5rzG3bIKsx68uHaIpdoKTeA6225koCr9X4XDfAGd4,438984
|
|
38
|
+
omniopt2-8507.data/data/bin/.omniopt_plot_cpu_ram_usage.py,sha256=DbOAmdrbcZtsMnHJgHfeRngjtv6zX5J0axyua_dYezc,3932
|
|
39
|
+
omniopt2-8507.data/data/bin/.omniopt_plot_general.py,sha256=3iy-bPef8I5rTB3KRz-TuleMdgKDmVZ6c8LuNQhNwu0,6810
|
|
40
|
+
omniopt2-8507.data/data/bin/.omniopt_plot_gpu_usage.py,sha256=ojxVicwSoiyl7f3c-6lLuT2EpyPcSJKEcbp75LgDY2k,5107
|
|
41
|
+
omniopt2-8507.data/data/bin/.omniopt_plot_kde.py,sha256=uRLWr72TDKvj3AqJ0O0AvkKZ1ok1O1QpXnbfQQdo0nA,6873
|
|
42
|
+
omniopt2-8507.data/data/bin/.omniopt_plot_scatter.py,sha256=b0_CIqgyi6PztaUVJRL9X9XBTaOonh-yDH2hRxMGkH0,8403
|
|
43
|
+
omniopt2-8507.data/data/bin/.omniopt_plot_scatter_generation_method.py,sha256=rgKY_w1E516c9UucVaEvaKd8tCnoUq9xg-RrYSDzYEQ,4289
|
|
44
|
+
omniopt2-8507.data/data/bin/.omniopt_plot_scatter_hex.py,sha256=UKjw40c1eumgEcf0xqB-_SakX5PB6HD3u4VwBxbsgQo,10279
|
|
45
|
+
omniopt2-8507.data/data/bin/.omniopt_plot_time_and_exit_code.py,sha256=WUyl2uI59wsC1eSX_5uJHOrqcF-s5cUDIEu8u3IFMLU,6462
|
|
46
|
+
omniopt2-8507.data/data/bin/.omniopt_plot_trial_index_result.py,sha256=Xlo_dYTQNnxPhYakmgMM58CCcW9gUoXZ3gLap9RScTY,4578
|
|
47
|
+
omniopt2-8507.data/data/bin/.omniopt_plot_worker.py,sha256=VuluQq4W6KRR5RU08dxmDSFk5mbfDRkRJQFwwcLgAGw,4524
|
|
48
|
+
omniopt2-8507.data/data/bin/.random_generator.py,sha256=ezBBUXpez_QaGdpCglMcJ0KZPdQP0XdX5gnLzO1xhwU,2987
|
|
49
|
+
omniopt2-8507.data/data/bin/.shellscript_functions,sha256=DxcCtTZBRxFp6P6EesUM4JcxqeCSsZOb7rLXbmBdQt8,13628
|
|
50
|
+
omniopt2-8507.data/data/bin/.tpe.py,sha256=93yjviAtxPRYUCpSIShW_H3QQ5JPNcnXNjF0g8zc7Wc,6766
|
|
51
|
+
omniopt2-8507.data/data/bin/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
52
|
+
omniopt2-8507.data/data/bin/apt-dependencies.txt,sha256=X5tBB8ZLW9XaFtRh8B7C2pIkSoxNNawqioDr0QZAtuM,149
|
|
53
|
+
omniopt2-8507.data/data/bin/omniopt,sha256=p6rZSb5AYjmArgK-A6yOuDeHPxyoBdfpoHxh7raUrHw,51829
|
|
54
|
+
omniopt2-8507.data/data/bin/omniopt_docker,sha256=XyEGZ71l-tUlAYUluVF39fGO3NLDRa8UyrwxmAsXWNI,3542
|
|
55
|
+
omniopt2-8507.data/data/bin/omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
|
|
56
|
+
omniopt2-8507.data/data/bin/omniopt_plot,sha256=ze6Dz2k0w5jyUnfatAA7dk59nzQjKC_G36tDvJGWsfA,13696
|
|
57
|
+
omniopt2-8507.data/data/bin/omniopt_share,sha256=2KZcTjN_7vcxNjb4sLLiWgUc38pl2-6-Qwmgq6_nTb0,13856
|
|
58
|
+
omniopt2-8507.data/data/bin/pylint.rc,sha256=ZGtZjVgJtK_6tdwgscJneS-LUeDASjSVVz6veCkp9rw,22631
|
|
59
|
+
omniopt2-8507.data/data/bin/requirements.txt,sha256=0ViG5vdrDP--nr7mbZbV0ayJc6a5APNlTiMqGEZB6qE,292
|
|
60
|
+
omniopt2-8507.data/data/bin/setup.py,sha256=zg7k4jeHXEdaGWGeB1mPC14fFj-hqz1vNimnU0JcMyk,4632
|
|
61
|
+
omniopt2-8507.data/data/bin/test_requirements.txt,sha256=jpyZzAwbWR_qnoRqWvpBB5MUjIX9jVwynX2D-B-r8aA,487
|
|
62
|
+
omniopt2-8507.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
63
|
+
omniopt2.egg-info/PKG-INFO,sha256=AaVSFdUFFpqNFWLffw2gbwI2UaFGPFo6eX5pNGNTPn8,5718
|
|
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=_n-6wV9UtTagGm4wbRDW7FjKoCB0Y4jkb5VbARh6pMU,779
|
|
67
67
|
omniopt2.egg-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
68
|
-
omniopt2-
|
|
69
|
-
omniopt2-
|
|
70
|
-
omniopt2-
|
|
71
|
-
omniopt2-
|
|
68
|
+
omniopt2-8507.dist-info/METADATA,sha256=AaVSFdUFFpqNFWLffw2gbwI2UaFGPFo6eX5pNGNTPn8,5718
|
|
69
|
+
omniopt2-8507.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
70
|
+
omniopt2-8507.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
71
|
+
omniopt2-8507.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-8496.data → omniopt2-8507.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
|