omniopt2 7010__py3-none-any.whl → 7015__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.
- .helpers.py +5 -1
- .omniopt_plot_gpu_usage.py +0 -1
- .omniopt_plot_scatter.py +1 -8
- .omniopt_plot_scatter_hex.py +1 -8
- .omniopt_plot_time_and_exit_code.py +0 -2
- .omniopt_plot_worker.py +9 -12
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/.helpers.py +5 -1
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/.omniopt_plot_gpu_usage.py +0 -1
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/.omniopt_plot_scatter.py +1 -8
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/.omniopt_plot_scatter_hex.py +1 -8
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/.omniopt_plot_time_and_exit_code.py +0 -2
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/.omniopt_plot_worker.py +9 -12
- {omniopt2-7010.dist-info → omniopt2-7015.dist-info}/METADATA +1 -1
- {omniopt2-7010.dist-info → omniopt2-7015.dist-info}/RECORD +39 -39
- omniopt2.egg-info/PKG-INFO +1 -1
- pyproject.toml +1 -1
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/.colorfunctions.sh +0 -0
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/.general.sh +0 -0
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/.omniopt.py +0 -0
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/.omniopt_plot_cpu_ram_usage.py +0 -0
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/.omniopt_plot_general.py +0 -0
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/.omniopt_plot_kde.py +0 -0
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/.omniopt_plot_scatter_generation_method.py +0 -0
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/.omniopt_plot_trial_index_result.py +0 -0
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/.random_generator.py +0 -0
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/.shellscript_functions +0 -0
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/LICENSE +0 -0
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/apt-dependencies.txt +0 -0
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/omniopt +0 -0
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/omniopt_docker +0 -0
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/omniopt_evaluate +0 -0
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/omniopt_plot +0 -0
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/omniopt_share +0 -0
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/requirements.txt +0 -0
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/setup.py +0 -0
- {omniopt2-7010.data → omniopt2-7015.data}/data/bin/test_requirements.txt +0 -0
- {omniopt2-7010.dist-info → omniopt2-7015.dist-info}/WHEEL +0 -0
- {omniopt2-7010.dist-info → omniopt2-7015.dist-info}/licenses/LICENSE +0 -0
- {omniopt2-7010.dist-info → omniopt2-7015.dist-info}/top_level.txt +0 -0
.helpers.py
CHANGED
@@ -842,7 +842,11 @@ def can_be_plotted(path: str) -> bool:
|
|
842
842
|
|
843
843
|
return len(lines) == 1
|
844
844
|
|
845
|
-
def die_if_cannot_be_plotted(run_dir: str) -> None:
|
845
|
+
def die_if_cannot_be_plotted(run_dir: Optional[str]) -> None:
|
846
|
+
if run_dir is None:
|
847
|
+
log_error("run_dir was empty")
|
848
|
+
sys.exit(2)
|
849
|
+
|
846
850
|
if not can_be_plotted(run_dir):
|
847
851
|
log_error(f"{run_dir} contains multiple RESULTS and thus can only be plotted by parallel plot")
|
848
852
|
sys.exit(2)
|
.omniopt_plot_gpu_usage.py
CHANGED
@@ -20,7 +20,6 @@ from beartype import beartype
|
|
20
20
|
|
21
21
|
parser = argparse.ArgumentParser(description='Process some integers.')
|
22
22
|
parser.add_argument('--run_dir', type=str, help='Directory where to search for CSV files')
|
23
|
-
|
24
23
|
parser.add_argument('--no_legend', help='Disables legend (useless here)', action='store_true', default=False)
|
25
24
|
parser.add_argument('--save_to_file', nargs='?', const='plot', type=str, help='Path to save the plot(s)')
|
26
25
|
parser.add_argument('--no_plt_show', help='Disable showing the plot', action='store_true', default=False)
|
.omniopt_plot_scatter.py
CHANGED
@@ -49,7 +49,6 @@ parser.add_argument('--run_dir', type=str, help='Path to a CSV file', required=T
|
|
49
49
|
parser.add_argument('--save_to_file', type=str, help='Save the plot to the specified file', default=None)
|
50
50
|
parser.add_argument('--max', type=float, help='Maximum value', default=None)
|
51
51
|
parser.add_argument('--min', type=float, help='Minimum value', default=None)
|
52
|
-
parser.add_argument('--darkmode', help='Enable darktheme', action='store_true', default=False)
|
53
52
|
parser.add_argument('--bubblesize', type=int, help='Size of the bubbles', default=15)
|
54
53
|
parser.add_argument('--merge_with_previous_runs', action='append', nargs='+', help="Run-Dirs to be merged with", default=[])
|
55
54
|
parser.add_argument('--exclude_params', action='append', nargs='+', help="Params to be ignored", default=[])
|
@@ -214,12 +213,6 @@ def update_graph(csv_file_path: str, event: Any = None, _min: Union[int, float,
|
|
214
213
|
|
215
214
|
if __name__ == "__main__":
|
216
215
|
try:
|
217
|
-
|
218
|
-
|
219
|
-
if args is not None and args.darkmode:
|
220
|
-
theme = "dark_background"
|
221
|
-
|
222
|
-
with plt.style.context(theme):
|
223
|
-
main()
|
216
|
+
main()
|
224
217
|
except KeyboardInterrupt:
|
225
218
|
sys.exit(0)
|
.omniopt_plot_scatter_hex.py
CHANGED
@@ -55,7 +55,6 @@ parser.add_argument('--run_dir', type=str, help='Path to a CSV file', required=T
|
|
55
55
|
parser.add_argument('--save_to_file', type=str, help='Save the plot to the specified file', default=None)
|
56
56
|
parser.add_argument('--max', type=float, help='Maximum value', default=None)
|
57
57
|
parser.add_argument('--min', type=float, help='Minimum value', default=None)
|
58
|
-
parser.add_argument('--darkmode', help='Enable darktheme', action='store_true', default=False)
|
59
58
|
parser.add_argument('--merge_with_previous_runs', action='append', nargs='+', help="Run-Dirs to be merged with", default=[])
|
60
59
|
parser.add_argument('--exclude_params', action='append', nargs='+', help="Params to be ignored", default=[])
|
61
60
|
|
@@ -266,12 +265,6 @@ def update_graph(csv_file_path: str, event: Any = None, _min: Union[int, float,
|
|
266
265
|
|
267
266
|
if __name__ == "__main__":
|
268
267
|
try:
|
269
|
-
|
270
|
-
|
271
|
-
if args is not None and args.darkmode:
|
272
|
-
theme = "dark_background"
|
273
|
-
|
274
|
-
with plt.style.context(theme):
|
275
|
-
main()
|
268
|
+
main()
|
276
269
|
except KeyboardInterrupt:
|
277
270
|
sys.exit(0)
|
@@ -38,9 +38,7 @@ else:
|
|
38
38
|
|
39
39
|
parser = argparse.ArgumentParser(description='Plot worker usage from CSV file')
|
40
40
|
parser.add_argument('--run_dir', type=str, help='Directory containing worker usage CSV file')
|
41
|
-
|
42
41
|
parser.add_argument('--save_to_file', type=str, help='Save the plot to the specified file', default=None)
|
43
|
-
|
44
42
|
parser.add_argument('--bins', type=int, help='Number of bins for distribution of results (useless here)', default=10)
|
45
43
|
parser.add_argument('--no_plt_show', help='Disable showing the plot', action='store_true', default=False)
|
46
44
|
args = parser.parse_args()
|
.omniopt_plot_worker.py
CHANGED
@@ -12,13 +12,19 @@ import os
|
|
12
12
|
import sys
|
13
13
|
import traceback
|
14
14
|
from datetime import datetime, timezone
|
15
|
-
from typing import Any
|
16
15
|
|
17
16
|
import matplotlib.pyplot as plt
|
18
17
|
import pandas as pd
|
19
18
|
|
20
19
|
from beartype import beartype
|
21
20
|
|
21
|
+
parser = argparse.ArgumentParser(description='Plot worker usage from CSV file')
|
22
|
+
parser.add_argument('--run_dir', type=str, help='Directory containing worker usage CSV file')
|
23
|
+
parser.add_argument('--debug', action='store_true', help='Enable debug mode')
|
24
|
+
parser.add_argument('--save_to_file', type=str, help='Save the plot to the specified file', default=None)
|
25
|
+
parser.add_argument('--no_plt_show', help='Disable showing the plot', action='store_true', default=False)
|
26
|
+
args = parser.parse_args()
|
27
|
+
|
22
28
|
script_dir = os.path.dirname(os.path.realpath(__file__))
|
23
29
|
helpers_file = f"{script_dir}/.helpers.py"
|
24
30
|
spec = importlib.util.spec_from_file_location(
|
@@ -32,7 +38,7 @@ else:
|
|
32
38
|
raise ImportError(f"Could not load module from {helpers_file}")
|
33
39
|
|
34
40
|
@beartype
|
35
|
-
def plot_worker_usage(
|
41
|
+
def plot_worker_usage(pd_csv: str) -> None:
|
36
42
|
try:
|
37
43
|
data = pd.read_csv(pd_csv, names=['time', 'num_parallel_jobs', 'nr_current_workers', 'percentage'])
|
38
44
|
|
@@ -93,15 +99,6 @@ def plot_worker_usage(args: Any, pd_csv: str) -> None:
|
|
93
99
|
print(traceback.format_exc(), file=sys.stderr)
|
94
100
|
|
95
101
|
def main() -> None:
|
96
|
-
parser = argparse.ArgumentParser(description='Plot worker usage from CSV file')
|
97
|
-
parser.add_argument('--run_dir', type=str, help='Directory containing worker usage CSV file')
|
98
|
-
parser.add_argument('--debug', action='store_true', help='Enable debug mode')
|
99
|
-
|
100
|
-
parser.add_argument('--save_to_file', type=str, help='Save the plot to the specified file', default=None)
|
101
|
-
|
102
|
-
parser.add_argument('--no_plt_show', help='Disable showing the plot', action='store_true', default=False)
|
103
|
-
args = parser.parse_args()
|
104
|
-
|
105
102
|
if args.debug:
|
106
103
|
print(f"Debug mode enabled. Run directory: {args.run_dir}")
|
107
104
|
|
@@ -111,7 +108,7 @@ def main() -> None:
|
|
111
108
|
worker_usage_csv = os.path.join(args.run_dir, "worker_usage.csv")
|
112
109
|
if os.path.exists(worker_usage_csv):
|
113
110
|
try:
|
114
|
-
plot_worker_usage(
|
111
|
+
plot_worker_usage(worker_usage_csv)
|
115
112
|
except Exception as e:
|
116
113
|
helpers.log_error(f"Error: {e}")
|
117
114
|
sys.exit(3)
|
@@ -842,7 +842,11 @@ def can_be_plotted(path: str) -> bool:
|
|
842
842
|
|
843
843
|
return len(lines) == 1
|
844
844
|
|
845
|
-
def die_if_cannot_be_plotted(run_dir: str) -> None:
|
845
|
+
def die_if_cannot_be_plotted(run_dir: Optional[str]) -> None:
|
846
|
+
if run_dir is None:
|
847
|
+
log_error("run_dir was empty")
|
848
|
+
sys.exit(2)
|
849
|
+
|
846
850
|
if not can_be_plotted(run_dir):
|
847
851
|
log_error(f"{run_dir} contains multiple RESULTS and thus can only be plotted by parallel plot")
|
848
852
|
sys.exit(2)
|
@@ -20,7 +20,6 @@ from beartype import beartype
|
|
20
20
|
|
21
21
|
parser = argparse.ArgumentParser(description='Process some integers.')
|
22
22
|
parser.add_argument('--run_dir', type=str, help='Directory where to search for CSV files')
|
23
|
-
|
24
23
|
parser.add_argument('--no_legend', help='Disables legend (useless here)', action='store_true', default=False)
|
25
24
|
parser.add_argument('--save_to_file', nargs='?', const='plot', type=str, help='Path to save the plot(s)')
|
26
25
|
parser.add_argument('--no_plt_show', help='Disable showing the plot', action='store_true', default=False)
|
@@ -49,7 +49,6 @@ parser.add_argument('--run_dir', type=str, help='Path to a CSV file', required=T
|
|
49
49
|
parser.add_argument('--save_to_file', type=str, help='Save the plot to the specified file', default=None)
|
50
50
|
parser.add_argument('--max', type=float, help='Maximum value', default=None)
|
51
51
|
parser.add_argument('--min', type=float, help='Minimum value', default=None)
|
52
|
-
parser.add_argument('--darkmode', help='Enable darktheme', action='store_true', default=False)
|
53
52
|
parser.add_argument('--bubblesize', type=int, help='Size of the bubbles', default=15)
|
54
53
|
parser.add_argument('--merge_with_previous_runs', action='append', nargs='+', help="Run-Dirs to be merged with", default=[])
|
55
54
|
parser.add_argument('--exclude_params', action='append', nargs='+', help="Params to be ignored", default=[])
|
@@ -214,12 +213,6 @@ def update_graph(csv_file_path: str, event: Any = None, _min: Union[int, float,
|
|
214
213
|
|
215
214
|
if __name__ == "__main__":
|
216
215
|
try:
|
217
|
-
|
218
|
-
|
219
|
-
if args is not None and args.darkmode:
|
220
|
-
theme = "dark_background"
|
221
|
-
|
222
|
-
with plt.style.context(theme):
|
223
|
-
main()
|
216
|
+
main()
|
224
217
|
except KeyboardInterrupt:
|
225
218
|
sys.exit(0)
|
@@ -55,7 +55,6 @@ parser.add_argument('--run_dir', type=str, help='Path to a CSV file', required=T
|
|
55
55
|
parser.add_argument('--save_to_file', type=str, help='Save the plot to the specified file', default=None)
|
56
56
|
parser.add_argument('--max', type=float, help='Maximum value', default=None)
|
57
57
|
parser.add_argument('--min', type=float, help='Minimum value', default=None)
|
58
|
-
parser.add_argument('--darkmode', help='Enable darktheme', action='store_true', default=False)
|
59
58
|
parser.add_argument('--merge_with_previous_runs', action='append', nargs='+', help="Run-Dirs to be merged with", default=[])
|
60
59
|
parser.add_argument('--exclude_params', action='append', nargs='+', help="Params to be ignored", default=[])
|
61
60
|
|
@@ -266,12 +265,6 @@ def update_graph(csv_file_path: str, event: Any = None, _min: Union[int, float,
|
|
266
265
|
|
267
266
|
if __name__ == "__main__":
|
268
267
|
try:
|
269
|
-
|
270
|
-
|
271
|
-
if args is not None and args.darkmode:
|
272
|
-
theme = "dark_background"
|
273
|
-
|
274
|
-
with plt.style.context(theme):
|
275
|
-
main()
|
268
|
+
main()
|
276
269
|
except KeyboardInterrupt:
|
277
270
|
sys.exit(0)
|
@@ -38,9 +38,7 @@ else:
|
|
38
38
|
|
39
39
|
parser = argparse.ArgumentParser(description='Plot worker usage from CSV file')
|
40
40
|
parser.add_argument('--run_dir', type=str, help='Directory containing worker usage CSV file')
|
41
|
-
|
42
41
|
parser.add_argument('--save_to_file', type=str, help='Save the plot to the specified file', default=None)
|
43
|
-
|
44
42
|
parser.add_argument('--bins', type=int, help='Number of bins for distribution of results (useless here)', default=10)
|
45
43
|
parser.add_argument('--no_plt_show', help='Disable showing the plot', action='store_true', default=False)
|
46
44
|
args = parser.parse_args()
|
@@ -12,13 +12,19 @@ import os
|
|
12
12
|
import sys
|
13
13
|
import traceback
|
14
14
|
from datetime import datetime, timezone
|
15
|
-
from typing import Any
|
16
15
|
|
17
16
|
import matplotlib.pyplot as plt
|
18
17
|
import pandas as pd
|
19
18
|
|
20
19
|
from beartype import beartype
|
21
20
|
|
21
|
+
parser = argparse.ArgumentParser(description='Plot worker usage from CSV file')
|
22
|
+
parser.add_argument('--run_dir', type=str, help='Directory containing worker usage CSV file')
|
23
|
+
parser.add_argument('--debug', action='store_true', help='Enable debug mode')
|
24
|
+
parser.add_argument('--save_to_file', type=str, help='Save the plot to the specified file', default=None)
|
25
|
+
parser.add_argument('--no_plt_show', help='Disable showing the plot', action='store_true', default=False)
|
26
|
+
args = parser.parse_args()
|
27
|
+
|
22
28
|
script_dir = os.path.dirname(os.path.realpath(__file__))
|
23
29
|
helpers_file = f"{script_dir}/.helpers.py"
|
24
30
|
spec = importlib.util.spec_from_file_location(
|
@@ -32,7 +38,7 @@ else:
|
|
32
38
|
raise ImportError(f"Could not load module from {helpers_file}")
|
33
39
|
|
34
40
|
@beartype
|
35
|
-
def plot_worker_usage(
|
41
|
+
def plot_worker_usage(pd_csv: str) -> None:
|
36
42
|
try:
|
37
43
|
data = pd.read_csv(pd_csv, names=['time', 'num_parallel_jobs', 'nr_current_workers', 'percentage'])
|
38
44
|
|
@@ -93,15 +99,6 @@ def plot_worker_usage(args: Any, pd_csv: str) -> None:
|
|
93
99
|
print(traceback.format_exc(), file=sys.stderr)
|
94
100
|
|
95
101
|
def main() -> None:
|
96
|
-
parser = argparse.ArgumentParser(description='Plot worker usage from CSV file')
|
97
|
-
parser.add_argument('--run_dir', type=str, help='Directory containing worker usage CSV file')
|
98
|
-
parser.add_argument('--debug', action='store_true', help='Enable debug mode')
|
99
|
-
|
100
|
-
parser.add_argument('--save_to_file', type=str, help='Save the plot to the specified file', default=None)
|
101
|
-
|
102
|
-
parser.add_argument('--no_plt_show', help='Disable showing the plot', action='store_true', default=False)
|
103
|
-
args = parser.parse_args()
|
104
|
-
|
105
102
|
if args.debug:
|
106
103
|
print(f"Debug mode enabled. Run directory: {args.run_dir}")
|
107
104
|
|
@@ -111,7 +108,7 @@ def main() -> None:
|
|
111
108
|
worker_usage_csv = os.path.join(args.run_dir, "worker_usage.csv")
|
112
109
|
if os.path.exists(worker_usage_csv):
|
113
110
|
try:
|
114
|
-
plot_worker_usage(
|
111
|
+
plot_worker_usage(worker_usage_csv)
|
115
112
|
except Exception as e:
|
116
113
|
helpers.log_error(f"Error: {e}")
|
117
114
|
sys.exit(3)
|
@@ -2,18 +2,18 @@
|
|
2
2
|
.dockerignore,sha256=vtgV4tvVZdmusf1z7MYscSBo_UTtHMG6T7Knb4llBvo,11
|
3
3
|
.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
|
4
4
|
.gitignore,sha256=OMaFWOR6wxjAlI85rF3euQcjQFFAl1F34abZkltKnaU,3714
|
5
|
-
.helpers.py,sha256=
|
5
|
+
.helpers.py,sha256=srrRn0QBzG8JpNbHAYG2k1rQY6JYrUrNdTj-tDMJSyg,30526
|
6
6
|
.omniopt.py,sha256=ShAsbZkIx57DwSIQwY0grfaSdnlEN9pmZ91GChyJZWM,372157
|
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
|
-
.omniopt_plot_gpu_usage.py,sha256=
|
9
|
+
.omniopt_plot_gpu_usage.py,sha256=ojxVicwSoiyl7f3c-6lLuT2EpyPcSJKEcbp75LgDY2k,5107
|
10
10
|
.omniopt_plot_kde.py,sha256=uRLWr72TDKvj3AqJ0O0AvkKZ1ok1O1QpXnbfQQdo0nA,6873
|
11
|
-
.omniopt_plot_scatter.py,sha256
|
11
|
+
.omniopt_plot_scatter.py,sha256=-amqmLR_YLCbHImLPh6gwVFv8iiVnXME544XHsRVCuw,8422
|
12
12
|
.omniopt_plot_scatter_generation_method.py,sha256=rgKY_w1E516c9UucVaEvaKd8tCnoUq9xg-RrYSDzYEQ,4289
|
13
|
-
.omniopt_plot_scatter_hex.py,sha256=
|
14
|
-
.omniopt_plot_time_and_exit_code.py,sha256=
|
13
|
+
.omniopt_plot_scatter_hex.py,sha256=w1L5gL6Bc_QudoSJi2lxEVvF17Apjjb3l2T-lXGnsUg,10279
|
14
|
+
.omniopt_plot_time_and_exit_code.py,sha256=hC4RFDiJN_UImezFR6M5uVF-QKDqMDpq6R5DIg7dDDc,6463
|
15
15
|
.omniopt_plot_trial_index_result.py,sha256=5DmqZAQO_PFmzdap-TIhSMAshRXpOHQacnHAtjwnzN4,4629
|
16
|
-
.omniopt_plot_worker.py,sha256=
|
16
|
+
.omniopt_plot_worker.py,sha256=VuluQq4W6KRR5RU08dxmDSFk5mbfDRkRJQFwwcLgAGw,4524
|
17
17
|
.random_generator.py,sha256=ezBBUXpez_QaGdpCglMcJ0KZPdQP0XdX5gnLzO1xhwU,2987
|
18
18
|
.shellscript_functions,sha256=7IjirQJpC7TCRPuRj1dO2W6A8h5cHt0dVzj6eH_2EiQ,14664
|
19
19
|
LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
@@ -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=i60eTM5f2M9cIijWSndwGyKDbVW-UUGsNH2lFXd_wQI,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-7015.data/data/bin/.colorfunctions.sh,sha256=CDlgjwrsrHR_E6c-Qak5wZlotArXm-nf9sVvXePzGZA,1083
|
33
|
+
omniopt2-7015.data/data/bin/.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
|
34
|
+
omniopt2-7015.data/data/bin/.helpers.py,sha256=srrRn0QBzG8JpNbHAYG2k1rQY6JYrUrNdTj-tDMJSyg,30526
|
35
|
+
omniopt2-7015.data/data/bin/.omniopt.py,sha256=ShAsbZkIx57DwSIQwY0grfaSdnlEN9pmZ91GChyJZWM,372157
|
36
|
+
omniopt2-7015.data/data/bin/.omniopt_plot_cpu_ram_usage.py,sha256=DbOAmdrbcZtsMnHJgHfeRngjtv6zX5J0axyua_dYezc,3932
|
37
|
+
omniopt2-7015.data/data/bin/.omniopt_plot_general.py,sha256=ZERZJkvVOoJhi7SszmTF1Iln-_08_0Aki48u3LHUW-k,6809
|
38
|
+
omniopt2-7015.data/data/bin/.omniopt_plot_gpu_usage.py,sha256=ojxVicwSoiyl7f3c-6lLuT2EpyPcSJKEcbp75LgDY2k,5107
|
39
|
+
omniopt2-7015.data/data/bin/.omniopt_plot_kde.py,sha256=uRLWr72TDKvj3AqJ0O0AvkKZ1ok1O1QpXnbfQQdo0nA,6873
|
40
|
+
omniopt2-7015.data/data/bin/.omniopt_plot_scatter.py,sha256=-amqmLR_YLCbHImLPh6gwVFv8iiVnXME544XHsRVCuw,8422
|
41
|
+
omniopt2-7015.data/data/bin/.omniopt_plot_scatter_generation_method.py,sha256=rgKY_w1E516c9UucVaEvaKd8tCnoUq9xg-RrYSDzYEQ,4289
|
42
|
+
omniopt2-7015.data/data/bin/.omniopt_plot_scatter_hex.py,sha256=w1L5gL6Bc_QudoSJi2lxEVvF17Apjjb3l2T-lXGnsUg,10279
|
43
|
+
omniopt2-7015.data/data/bin/.omniopt_plot_time_and_exit_code.py,sha256=hC4RFDiJN_UImezFR6M5uVF-QKDqMDpq6R5DIg7dDDc,6463
|
44
|
+
omniopt2-7015.data/data/bin/.omniopt_plot_trial_index_result.py,sha256=5DmqZAQO_PFmzdap-TIhSMAshRXpOHQacnHAtjwnzN4,4629
|
45
|
+
omniopt2-7015.data/data/bin/.omniopt_plot_worker.py,sha256=VuluQq4W6KRR5RU08dxmDSFk5mbfDRkRJQFwwcLgAGw,4524
|
46
|
+
omniopt2-7015.data/data/bin/.random_generator.py,sha256=ezBBUXpez_QaGdpCglMcJ0KZPdQP0XdX5gnLzO1xhwU,2987
|
47
|
+
omniopt2-7015.data/data/bin/.shellscript_functions,sha256=7IjirQJpC7TCRPuRj1dO2W6A8h5cHt0dVzj6eH_2EiQ,14664
|
48
|
+
omniopt2-7015.data/data/bin/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
49
|
+
omniopt2-7015.data/data/bin/apt-dependencies.txt,sha256=X5tBB8ZLW9XaFtRh8B7C2pIkSoxNNawqioDr0QZAtuM,149
|
50
|
+
omniopt2-7015.data/data/bin/omniopt,sha256=RIi0yZALrZGefiejun1fkDJ0LX95WymXd2xZFlglMsQ,48072
|
51
|
+
omniopt2-7015.data/data/bin/omniopt_docker,sha256=LWVUeyvmA5AKqAHiH9jBUkR5uZ6AHMnSy0eET7mK6E4,3602
|
52
|
+
omniopt2-7015.data/data/bin/omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
|
53
|
+
omniopt2-7015.data/data/bin/omniopt_plot,sha256=Z8ZR10p-ZRSgMeVPO-wVCJ8lk-LQtntjZ9Bk9RifCIs,13360
|
54
|
+
omniopt2-7015.data/data/bin/omniopt_share,sha256=7g5I7YdoWcA6_GDwWwq0xPf23qiVc_VDrm9ySLH7SH0,14051
|
55
|
+
omniopt2-7015.data/data/bin/requirements.txt,sha256=gj9r1kqJK9w1q6YJuViWlq7U0GZf5SOYVO1Ndcy24L0,280
|
56
|
+
omniopt2-7015.data/data/bin/setup.py,sha256=g3uEqJHXhggXwgLYoxOjsXg9Z6IV1ubh-Og59AZ264Q,4648
|
57
|
+
omniopt2-7015.data/data/bin/test_requirements.txt,sha256=dnCbKmKalrVzNZ_-iQWf1xCxcnDsdGuhbDAr9XlGm-U,477
|
58
|
+
omniopt2-7015.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
59
|
+
omniopt2.egg-info/PKG-INFO,sha256=cDzrA8_f77hv7OiGbFI4fVN_m4Rc5ChQFquoWk1LG5k,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-7015.dist-info/METADATA,sha256=cDzrA8_f77hv7OiGbFI4fVN_m4Rc5ChQFquoWk1LG5k,5792
|
65
|
+
omniopt2-7015.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
66
|
+
omniopt2-7015.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
67
|
+
omniopt2-7015.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
|
{omniopt2-7010.data → omniopt2-7015.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
|