omniopt2 7014__py3-none-any.whl → 7016__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.
Files changed (45) hide show
  1. .omniopt.py +20 -0
  2. .omniopt_plot_cpu_ram_usage.py +1 -8
  3. .omniopt_plot_general.py +1 -8
  4. .omniopt_plot_gpu_usage.py +7 -14
  5. .omniopt_plot_kde.py +1 -8
  6. .omniopt_plot_scatter.py +1 -8
  7. .omniopt_plot_scatter_generation_method.py +1 -8
  8. .omniopt_plot_scatter_hex.py +1 -8
  9. .omniopt_plot_time_and_exit_code.py +1 -8
  10. .omniopt_plot_trial_index_result.py +1 -8
  11. .omniopt_plot_worker.py +1 -8
  12. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/.omniopt.py +20 -0
  13. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/.omniopt_plot_cpu_ram_usage.py +1 -8
  14. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/.omniopt_plot_general.py +1 -8
  15. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/.omniopt_plot_gpu_usage.py +7 -14
  16. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/.omniopt_plot_kde.py +1 -8
  17. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/.omniopt_plot_scatter.py +1 -8
  18. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/.omniopt_plot_scatter_generation_method.py +1 -8
  19. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/.omniopt_plot_scatter_hex.py +1 -8
  20. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/.omniopt_plot_time_and_exit_code.py +1 -8
  21. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/.omniopt_plot_trial_index_result.py +1 -8
  22. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/.omniopt_plot_worker.py +1 -8
  23. {omniopt2-7014.dist-info → omniopt2-7016.dist-info}/METADATA +1 -1
  24. omniopt2-7016.dist-info/RECORD +67 -0
  25. omniopt2.egg-info/PKG-INFO +1 -1
  26. pyproject.toml +1 -1
  27. omniopt2-7014.dist-info/RECORD +0 -67
  28. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/.colorfunctions.sh +0 -0
  29. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/.general.sh +0 -0
  30. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/.helpers.py +0 -0
  31. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/.random_generator.py +0 -0
  32. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/.shellscript_functions +0 -0
  33. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/LICENSE +0 -0
  34. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/apt-dependencies.txt +0 -0
  35. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/omniopt +0 -0
  36. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/omniopt_docker +0 -0
  37. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/omniopt_evaluate +0 -0
  38. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/omniopt_plot +0 -0
  39. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/omniopt_share +0 -0
  40. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/requirements.txt +0 -0
  41. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/setup.py +0 -0
  42. {omniopt2-7014.data → omniopt2-7016.data}/data/bin/test_requirements.txt +0 -0
  43. {omniopt2-7014.dist-info → omniopt2-7016.dist-info}/WHEEL +0 -0
  44. {omniopt2-7014.dist-info → omniopt2-7016.dist-info}/licenses/LICENSE +0 -0
  45. {omniopt2-7014.dist-info → omniopt2-7016.dist-info}/top_level.txt +0 -0
.omniopt.py CHANGED
@@ -6439,6 +6439,24 @@ def handle_restart(stdout_path: str, trial_index: int) -> None:
6439
6439
  else:
6440
6440
  print(f"Could not determine parameters from outfile {stdout_path} for restarting job")
6441
6441
 
6442
+ @beartype
6443
+ def check_alternate_path(path: str) -> str:
6444
+ if os.path.exists(path):
6445
+ return path
6446
+
6447
+ if path.endswith('.out'):
6448
+ alt_path = path[:-4] + '.err'
6449
+ elif path.endswith('.err'):
6450
+ alt_path = path[:-4] + '.out'
6451
+ else:
6452
+ alt_path = None
6453
+
6454
+ if alt_path and os.path.exists(alt_path):
6455
+ return alt_path
6456
+
6457
+ # Wenn auch der alternative Pfad nicht existiert, gib den Originalpfad zurück
6458
+ return path
6459
+
6442
6460
  @beartype
6443
6461
  def handle_restart_on_different_node(stdout_path: str, hostname_from_out_file: Union[None, str], trial_index: int) -> None:
6444
6462
  if hostname_from_out_file:
@@ -6458,6 +6476,8 @@ def _orchestrate(stdout_path: str, trial_index: int) -> None:
6458
6476
  if not behavs or behavs is None:
6459
6477
  return
6460
6478
 
6479
+ stdout_path = check_alternate_path(stdout_path)
6480
+
6461
6481
  hostname_from_out_file = get_hostname_from_outfile(stdout_path)
6462
6482
 
6463
6483
  behavior_handlers = {
@@ -39,7 +39,6 @@ def load_helpers(script_dir: str) -> None:
39
39
  parser = argparse.ArgumentParser(description='Plotting tool for analyzing CPU and RAM usage data.')
40
40
  parser.add_argument('--save_to_file', nargs='?', const='plot', type=str, help='Path to save the plot(s)')
41
41
  parser.add_argument('--run_dir', type=str, help='Path to a CSV file', required=True)
42
- parser.add_argument('--darkmode', help='Enable darktheme', action='store_true', default=False)
43
42
  parser.add_argument('--no_plt_show', help='Disable showing the plot', action='store_true', default=False)
44
43
  args = parser.parse_args()
45
44
 
@@ -114,10 +113,4 @@ def main() -> None:
114
113
  update_graph(csv_path)
115
114
 
116
115
  if __name__ == "__main__":
117
- theme = "fast"
118
-
119
- if args is not None and args.darkmode:
120
- theme = "dark_background"
121
-
122
- with plt.style.context(theme):
123
- main()
116
+ main()
.omniopt_plot_general.py CHANGED
@@ -41,7 +41,6 @@ def parse_arguments() -> Any:
41
41
  parser.add_argument('--max', type=float, help='Maximum value for result filtering')
42
42
  parser.add_argument('--save_to_file', nargs='?', const='plot', type=str, help='Path to save the plot(s)')
43
43
  parser.add_argument('--run_dir', type=str, help='Path to a CSV file', required=True)
44
- parser.add_argument('--darkmode', help='Enable darktheme', action='store_true', default=False)
45
44
  parser.add_argument('--bins', type=int, help='Number of bins for distribution of results', default=10)
46
45
  parser.add_argument('--alpha', type=float, help='Transparency of plot bars', default=0.5)
47
46
  parser.add_argument('--no_plt_show', help='Disable showing the plot', action='store_true', default=False)
@@ -139,10 +138,4 @@ if __name__ == "__main__":
139
138
  logging.error("Specified --run_dir does not exist")
140
139
  sys.exit(1)
141
140
 
142
- theme = "fast"
143
-
144
- if args is not None and args.darkmode:
145
- theme = "dark_background"
146
-
147
- with plt.style.context(theme):
148
- update_graph()
141
+ update_graph()
@@ -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
- parser.add_argument('--darkmode', help='Enable darktheme', action='store_true', default=False)
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)
@@ -140,16 +139,10 @@ def save_to_file_or_show_canvas() -> None:
140
139
  plt.show()
141
140
 
142
141
  if __name__ == "__main__":
143
- theme = "fast"
144
-
145
- if args is not None and args.darkmode:
146
- theme = "dark_background"
147
-
148
- with plt.style.context(theme):
149
- args = parser.parse_args()
150
- try:
151
- plot_gpu_usage(args.run_dir)
152
- except UnicodeDecodeError:
153
- if not os.environ.get("PLOT_TESTS"):
154
- print(f"{args.run_dir}/results.csv seems to be invalid utf8.")
155
- sys.exit(7)
142
+ args = parser.parse_args()
143
+ try:
144
+ plot_gpu_usage(args.run_dir)
145
+ except UnicodeDecodeError:
146
+ if not os.environ.get("PLOT_TESTS"):
147
+ print(f"{args.run_dir}/results.csv seems to be invalid utf8.")
148
+ sys.exit(7)
.omniopt_plot_kde.py CHANGED
@@ -42,7 +42,6 @@ parser = argparse.ArgumentParser(description='Plotting tool for analyzing trial
42
42
  parser.add_argument('--run_dir', type=str, help='Path to a run dir', required=True)
43
43
  parser.add_argument('--bins', type=int, help='Number of bins for distribution of results', default=10)
44
44
  parser.add_argument('--alpha', type=float, help='Transparency of plot bars (between 0 and 1)', default=0.5)
45
- parser.add_argument('--darkmode', help='Enable darktheme', action='store_true', default=False)
46
45
  parser.add_argument('--no_legend', help='Disables legend', action='store_true', default=False)
47
46
  parser.add_argument('--save_to_file', type=str, help='Save the plot to the specified file', default=None)
48
47
  parser.add_argument('--no_plt_show', help='Disable showing the plot', action='store_true', default=False)
@@ -191,10 +190,4 @@ if __name__ == "__main__":
191
190
  logging.error("Specified --run_dir does not exist")
192
191
  sys.exit(1)
193
192
 
194
- theme = "fast"
195
-
196
- if args is not None and args.darkmode:
197
- theme = "dark_background"
198
-
199
- with plt.style.context(theme):
200
- update_graph()
193
+ update_graph()
.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
- theme = "fast"
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)
@@ -34,7 +34,6 @@ else:
34
34
  parser = argparse.ArgumentParser(description='Plotting tool for analyzing trial data.')
35
35
  parser.add_argument('--min', type=float, help='Minimum value for result filtering')
36
36
  parser.add_argument('--max', type=float, help='Maximum value for result filtering')
37
- parser.add_argument('--darkmode', help='Enable darktheme', action='store_true', default=False)
38
37
  parser.add_argument('--save_to_file', nargs='?', const='plot', type=str, help='Path to save the plot(s)')
39
38
  parser.add_argument('--run_dir', type=str, help='Path to a CSV file', required=True)
40
39
  parser.add_argument('--no_plt_show', help='Disable showing the plot', action='store_true', default=False)
@@ -116,10 +115,4 @@ if __name__ == "__main__":
116
115
 
117
116
  helpers.die_if_cannot_be_plotted(args.run_dir)
118
117
 
119
- theme = "fast"
120
-
121
- if args is not None and args.darkmode:
122
- theme = "dark_background"
123
-
124
- with plt.style.context(theme):
125
- update_graph()
118
+ update_graph()
@@ -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
- theme = "fast"
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)
@@ -39,7 +39,6 @@ else:
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
41
  parser.add_argument('--save_to_file', type=str, help='Save the plot to the specified file', default=None)
42
- parser.add_argument('--darkmode', help='Enable darktheme', action='store_true', default=False)
43
42
  parser.add_argument('--bins', type=int, help='Number of bins for distribution of results (useless here)', default=10)
44
43
  parser.add_argument('--no_plt_show', help='Disable showing the plot', action='store_true', default=False)
45
44
  args = parser.parse_args()
@@ -157,10 +156,4 @@ def main() -> None:
157
156
  print("df was empty")
158
157
 
159
158
  if __name__ == "__main__":
160
- theme = "fast"
161
-
162
- if args is not None and args.darkmode:
163
- theme = "dark_background"
164
-
165
- with plt.style.context(theme):
166
- main()
159
+ main()
@@ -41,7 +41,6 @@ parser = argparse.ArgumentParser(description='Plotting tool for analyzing trial
41
41
  parser.add_argument('--min', type=float, help='Minimum value for result filtering')
42
42
  parser.add_argument('--max', type=float, help='Maximum value for result filtering')
43
43
  parser.add_argument('--save_to_file', nargs='?', const='plot', type=str, help='Path to save the plot(s)')
44
- parser.add_argument('--darkmode', help='Enable darktheme', action='store_true', default=False)
45
44
  parser.add_argument('--run_dir', type=str, help='Path to a CSV file', required=True)
46
45
  parser.add_argument('--no_plt_show', help='Disable showing the plot', action='store_true', default=False)
47
46
  args = parser.parse_args()
@@ -122,10 +121,4 @@ if __name__ == "__main__":
122
121
  logging.error("Specified --run_dir does not exist")
123
122
  sys.exit(1)
124
123
 
125
- theme = "fast"
126
-
127
- if args is not None and args.darkmode:
128
- theme = "dark_background"
129
-
130
- with plt.style.context(theme):
131
- update_graph()
124
+ update_graph()
.omniopt_plot_worker.py CHANGED
@@ -21,7 +21,6 @@ from beartype import beartype
21
21
  parser = argparse.ArgumentParser(description='Plot worker usage from CSV file')
22
22
  parser.add_argument('--run_dir', type=str, help='Directory containing worker usage CSV file')
23
23
  parser.add_argument('--debug', action='store_true', help='Enable debug mode')
24
- parser.add_argument('--darkmode', help='Enable darktheme', action='store_true', default=False)
25
24
  parser.add_argument('--save_to_file', type=str, help='Save the plot to the specified file', default=None)
26
25
  parser.add_argument('--no_plt_show', help='Disable showing the plot', action='store_true', default=False)
27
26
  args = parser.parse_args()
@@ -118,10 +117,4 @@ def main() -> None:
118
117
  sys.exit(19)
119
118
 
120
119
  if __name__ == "__main__":
121
- theme = "fast"
122
-
123
- if args is not None and args.darkmode:
124
- theme = "dark_background"
125
-
126
- with plt.style.context(theme):
127
- main()
120
+ main()
@@ -6439,6 +6439,24 @@ def handle_restart(stdout_path: str, trial_index: int) -> None:
6439
6439
  else:
6440
6440
  print(f"Could not determine parameters from outfile {stdout_path} for restarting job")
6441
6441
 
6442
+ @beartype
6443
+ def check_alternate_path(path: str) -> str:
6444
+ if os.path.exists(path):
6445
+ return path
6446
+
6447
+ if path.endswith('.out'):
6448
+ alt_path = path[:-4] + '.err'
6449
+ elif path.endswith('.err'):
6450
+ alt_path = path[:-4] + '.out'
6451
+ else:
6452
+ alt_path = None
6453
+
6454
+ if alt_path and os.path.exists(alt_path):
6455
+ return alt_path
6456
+
6457
+ # Wenn auch der alternative Pfad nicht existiert, gib den Originalpfad zurück
6458
+ return path
6459
+
6442
6460
  @beartype
6443
6461
  def handle_restart_on_different_node(stdout_path: str, hostname_from_out_file: Union[None, str], trial_index: int) -> None:
6444
6462
  if hostname_from_out_file:
@@ -6458,6 +6476,8 @@ def _orchestrate(stdout_path: str, trial_index: int) -> None:
6458
6476
  if not behavs or behavs is None:
6459
6477
  return
6460
6478
 
6479
+ stdout_path = check_alternate_path(stdout_path)
6480
+
6461
6481
  hostname_from_out_file = get_hostname_from_outfile(stdout_path)
6462
6482
 
6463
6483
  behavior_handlers = {
@@ -39,7 +39,6 @@ def load_helpers(script_dir: str) -> None:
39
39
  parser = argparse.ArgumentParser(description='Plotting tool for analyzing CPU and RAM usage data.')
40
40
  parser.add_argument('--save_to_file', nargs='?', const='plot', type=str, help='Path to save the plot(s)')
41
41
  parser.add_argument('--run_dir', type=str, help='Path to a CSV file', required=True)
42
- parser.add_argument('--darkmode', help='Enable darktheme', action='store_true', default=False)
43
42
  parser.add_argument('--no_plt_show', help='Disable showing the plot', action='store_true', default=False)
44
43
  args = parser.parse_args()
45
44
 
@@ -114,10 +113,4 @@ def main() -> None:
114
113
  update_graph(csv_path)
115
114
 
116
115
  if __name__ == "__main__":
117
- theme = "fast"
118
-
119
- if args is not None and args.darkmode:
120
- theme = "dark_background"
121
-
122
- with plt.style.context(theme):
123
- main()
116
+ main()
@@ -41,7 +41,6 @@ def parse_arguments() -> Any:
41
41
  parser.add_argument('--max', type=float, help='Maximum value for result filtering')
42
42
  parser.add_argument('--save_to_file', nargs='?', const='plot', type=str, help='Path to save the plot(s)')
43
43
  parser.add_argument('--run_dir', type=str, help='Path to a CSV file', required=True)
44
- parser.add_argument('--darkmode', help='Enable darktheme', action='store_true', default=False)
45
44
  parser.add_argument('--bins', type=int, help='Number of bins for distribution of results', default=10)
46
45
  parser.add_argument('--alpha', type=float, help='Transparency of plot bars', default=0.5)
47
46
  parser.add_argument('--no_plt_show', help='Disable showing the plot', action='store_true', default=False)
@@ -139,10 +138,4 @@ if __name__ == "__main__":
139
138
  logging.error("Specified --run_dir does not exist")
140
139
  sys.exit(1)
141
140
 
142
- theme = "fast"
143
-
144
- if args is not None and args.darkmode:
145
- theme = "dark_background"
146
-
147
- with plt.style.context(theme):
148
- update_graph()
141
+ update_graph()
@@ -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
- parser.add_argument('--darkmode', help='Enable darktheme', action='store_true', default=False)
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)
@@ -140,16 +139,10 @@ def save_to_file_or_show_canvas() -> None:
140
139
  plt.show()
141
140
 
142
141
  if __name__ == "__main__":
143
- theme = "fast"
144
-
145
- if args is not None and args.darkmode:
146
- theme = "dark_background"
147
-
148
- with plt.style.context(theme):
149
- args = parser.parse_args()
150
- try:
151
- plot_gpu_usage(args.run_dir)
152
- except UnicodeDecodeError:
153
- if not os.environ.get("PLOT_TESTS"):
154
- print(f"{args.run_dir}/results.csv seems to be invalid utf8.")
155
- sys.exit(7)
142
+ args = parser.parse_args()
143
+ try:
144
+ plot_gpu_usage(args.run_dir)
145
+ except UnicodeDecodeError:
146
+ if not os.environ.get("PLOT_TESTS"):
147
+ print(f"{args.run_dir}/results.csv seems to be invalid utf8.")
148
+ sys.exit(7)
@@ -42,7 +42,6 @@ parser = argparse.ArgumentParser(description='Plotting tool for analyzing trial
42
42
  parser.add_argument('--run_dir', type=str, help='Path to a run dir', required=True)
43
43
  parser.add_argument('--bins', type=int, help='Number of bins for distribution of results', default=10)
44
44
  parser.add_argument('--alpha', type=float, help='Transparency of plot bars (between 0 and 1)', default=0.5)
45
- parser.add_argument('--darkmode', help='Enable darktheme', action='store_true', default=False)
46
45
  parser.add_argument('--no_legend', help='Disables legend', action='store_true', default=False)
47
46
  parser.add_argument('--save_to_file', type=str, help='Save the plot to the specified file', default=None)
48
47
  parser.add_argument('--no_plt_show', help='Disable showing the plot', action='store_true', default=False)
@@ -191,10 +190,4 @@ if __name__ == "__main__":
191
190
  logging.error("Specified --run_dir does not exist")
192
191
  sys.exit(1)
193
192
 
194
- theme = "fast"
195
-
196
- if args is not None and args.darkmode:
197
- theme = "dark_background"
198
-
199
- with plt.style.context(theme):
200
- update_graph()
193
+ update_graph()
@@ -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
- theme = "fast"
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)
@@ -34,7 +34,6 @@ else:
34
34
  parser = argparse.ArgumentParser(description='Plotting tool for analyzing trial data.')
35
35
  parser.add_argument('--min', type=float, help='Minimum value for result filtering')
36
36
  parser.add_argument('--max', type=float, help='Maximum value for result filtering')
37
- parser.add_argument('--darkmode', help='Enable darktheme', action='store_true', default=False)
38
37
  parser.add_argument('--save_to_file', nargs='?', const='plot', type=str, help='Path to save the plot(s)')
39
38
  parser.add_argument('--run_dir', type=str, help='Path to a CSV file', required=True)
40
39
  parser.add_argument('--no_plt_show', help='Disable showing the plot', action='store_true', default=False)
@@ -116,10 +115,4 @@ if __name__ == "__main__":
116
115
 
117
116
  helpers.die_if_cannot_be_plotted(args.run_dir)
118
117
 
119
- theme = "fast"
120
-
121
- if args is not None and args.darkmode:
122
- theme = "dark_background"
123
-
124
- with plt.style.context(theme):
125
- update_graph()
118
+ update_graph()
@@ -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
- theme = "fast"
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)
@@ -39,7 +39,6 @@ else:
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
41
  parser.add_argument('--save_to_file', type=str, help='Save the plot to the specified file', default=None)
42
- parser.add_argument('--darkmode', help='Enable darktheme', action='store_true', default=False)
43
42
  parser.add_argument('--bins', type=int, help='Number of bins for distribution of results (useless here)', default=10)
44
43
  parser.add_argument('--no_plt_show', help='Disable showing the plot', action='store_true', default=False)
45
44
  args = parser.parse_args()
@@ -157,10 +156,4 @@ def main() -> None:
157
156
  print("df was empty")
158
157
 
159
158
  if __name__ == "__main__":
160
- theme = "fast"
161
-
162
- if args is not None and args.darkmode:
163
- theme = "dark_background"
164
-
165
- with plt.style.context(theme):
166
- main()
159
+ main()
@@ -41,7 +41,6 @@ parser = argparse.ArgumentParser(description='Plotting tool for analyzing trial
41
41
  parser.add_argument('--min', type=float, help='Minimum value for result filtering')
42
42
  parser.add_argument('--max', type=float, help='Maximum value for result filtering')
43
43
  parser.add_argument('--save_to_file', nargs='?', const='plot', type=str, help='Path to save the plot(s)')
44
- parser.add_argument('--darkmode', help='Enable darktheme', action='store_true', default=False)
45
44
  parser.add_argument('--run_dir', type=str, help='Path to a CSV file', required=True)
46
45
  parser.add_argument('--no_plt_show', help='Disable showing the plot', action='store_true', default=False)
47
46
  args = parser.parse_args()
@@ -122,10 +121,4 @@ if __name__ == "__main__":
122
121
  logging.error("Specified --run_dir does not exist")
123
122
  sys.exit(1)
124
123
 
125
- theme = "fast"
126
-
127
- if args is not None and args.darkmode:
128
- theme = "dark_background"
129
-
130
- with plt.style.context(theme):
131
- update_graph()
124
+ update_graph()
@@ -21,7 +21,6 @@ from beartype import beartype
21
21
  parser = argparse.ArgumentParser(description='Plot worker usage from CSV file')
22
22
  parser.add_argument('--run_dir', type=str, help='Directory containing worker usage CSV file')
23
23
  parser.add_argument('--debug', action='store_true', help='Enable debug mode')
24
- parser.add_argument('--darkmode', help='Enable darktheme', action='store_true', default=False)
25
24
  parser.add_argument('--save_to_file', type=str, help='Save the plot to the specified file', default=None)
26
25
  parser.add_argument('--no_plt_show', help='Disable showing the plot', action='store_true', default=False)
27
26
  args = parser.parse_args()
@@ -118,10 +117,4 @@ def main() -> None:
118
117
  sys.exit(19)
119
118
 
120
119
  if __name__ == "__main__":
121
- theme = "fast"
122
-
123
- if args is not None and args.darkmode:
124
- theme = "dark_background"
125
-
126
- with plt.style.context(theme):
127
- main()
120
+ main()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: omniopt2
3
- Version: 7014
3
+ Version: 7016
4
4
  Summary: Automatic highly parallelized hyperparameter optimizer based on Ax/Botorch
5
5
  Home-page: https://scads.ai/transfer-2/verfuegbare-software-dienste-en/omniopt/
6
6
  Author: Norman Koch
@@ -0,0 +1,67 @@
1
+ .colorfunctions.sh,sha256=CDlgjwrsrHR_E6c-Qak5wZlotArXm-nf9sVvXePzGZA,1083
2
+ .dockerignore,sha256=vtgV4tvVZdmusf1z7MYscSBo_UTtHMG6T7Knb4llBvo,11
3
+ .general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
4
+ .gitignore,sha256=OMaFWOR6wxjAlI85rF3euQcjQFFAl1F34abZkltKnaU,3714
5
+ .helpers.py,sha256=srrRn0QBzG8JpNbHAYG2k1rQY6JYrUrNdTj-tDMJSyg,30526
6
+ .omniopt.py,sha256=mN0U2Vcj_omOcFqN9oJEWLjUIvk5YrTUZYCKEyH1ZRo,372658
7
+ .omniopt_plot_cpu_ram_usage.py,sha256=DbOAmdrbcZtsMnHJgHfeRngjtv6zX5J0axyua_dYezc,3932
8
+ .omniopt_plot_general.py,sha256=ZERZJkvVOoJhi7SszmTF1Iln-_08_0Aki48u3LHUW-k,6809
9
+ .omniopt_plot_gpu_usage.py,sha256=ojxVicwSoiyl7f3c-6lLuT2EpyPcSJKEcbp75LgDY2k,5107
10
+ .omniopt_plot_kde.py,sha256=uRLWr72TDKvj3AqJ0O0AvkKZ1ok1O1QpXnbfQQdo0nA,6873
11
+ .omniopt_plot_scatter.py,sha256=-amqmLR_YLCbHImLPh6gwVFv8iiVnXME544XHsRVCuw,8422
12
+ .omniopt_plot_scatter_generation_method.py,sha256=rgKY_w1E516c9UucVaEvaKd8tCnoUq9xg-RrYSDzYEQ,4289
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
+ .omniopt_plot_trial_index_result.py,sha256=5DmqZAQO_PFmzdap-TIhSMAshRXpOHQacnHAtjwnzN4,4629
16
+ .omniopt_plot_worker.py,sha256=VuluQq4W6KRR5RU08dxmDSFk5mbfDRkRJQFwwcLgAGw,4524
17
+ .random_generator.py,sha256=ezBBUXpez_QaGdpCglMcJ0KZPdQP0XdX5gnLzO1xhwU,2987
18
+ .shellscript_functions,sha256=7IjirQJpC7TCRPuRj1dO2W6A8h5cHt0dVzj6eH_2EiQ,14664
19
+ LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
20
+ MANIFEST.in,sha256=L3QBXyL1TtyWxbAPsfjZdCfpeBrRuI5MSgdnvwdQ22Q,24
21
+ README.md,sha256=ImtT_VuWENewZKkJySRL_qpbHbs0pr6Xgs_n9HURg90,3332
22
+ apt-dependencies.txt,sha256=X5tBB8ZLW9XaFtRh8B7C2pIkSoxNNawqioDr0QZAtuM,149
23
+ omniopt,sha256=RIi0yZALrZGefiejun1fkDJ0LX95WymXd2xZFlglMsQ,48072
24
+ omniopt_docker,sha256=LWVUeyvmA5AKqAHiH9jBUkR5uZ6AHMnSy0eET7mK6E4,3602
25
+ omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
26
+ omniopt_plot,sha256=Z8ZR10p-ZRSgMeVPO-wVCJ8lk-LQtntjZ9Bk9RifCIs,13360
27
+ omniopt_share,sha256=7g5I7YdoWcA6_GDwWwq0xPf23qiVc_VDrm9ySLH7SH0,14051
28
+ pyproject.toml,sha256=IAh4i4NZ4OJxpGxnzo5fw_YxihRAlCEHYuNWfjlNH0Q,397
29
+ requirements.txt,sha256=gj9r1kqJK9w1q6YJuViWlq7U0GZf5SOYVO1Ndcy24L0,280
30
+ setup.cfg,sha256=HEc8uu6NpfxG5_AVh5SvXOpEFMNKPPPxgMIAH144vT4,38
31
+ test_requirements.txt,sha256=dnCbKmKalrVzNZ_-iQWf1xCxcnDsdGuhbDAr9XlGm-U,477
32
+ omniopt2-7016.data/data/bin/.colorfunctions.sh,sha256=CDlgjwrsrHR_E6c-Qak5wZlotArXm-nf9sVvXePzGZA,1083
33
+ omniopt2-7016.data/data/bin/.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
34
+ omniopt2-7016.data/data/bin/.helpers.py,sha256=srrRn0QBzG8JpNbHAYG2k1rQY6JYrUrNdTj-tDMJSyg,30526
35
+ omniopt2-7016.data/data/bin/.omniopt.py,sha256=mN0U2Vcj_omOcFqN9oJEWLjUIvk5YrTUZYCKEyH1ZRo,372658
36
+ omniopt2-7016.data/data/bin/.omniopt_plot_cpu_ram_usage.py,sha256=DbOAmdrbcZtsMnHJgHfeRngjtv6zX5J0axyua_dYezc,3932
37
+ omniopt2-7016.data/data/bin/.omniopt_plot_general.py,sha256=ZERZJkvVOoJhi7SszmTF1Iln-_08_0Aki48u3LHUW-k,6809
38
+ omniopt2-7016.data/data/bin/.omniopt_plot_gpu_usage.py,sha256=ojxVicwSoiyl7f3c-6lLuT2EpyPcSJKEcbp75LgDY2k,5107
39
+ omniopt2-7016.data/data/bin/.omniopt_plot_kde.py,sha256=uRLWr72TDKvj3AqJ0O0AvkKZ1ok1O1QpXnbfQQdo0nA,6873
40
+ omniopt2-7016.data/data/bin/.omniopt_plot_scatter.py,sha256=-amqmLR_YLCbHImLPh6gwVFv8iiVnXME544XHsRVCuw,8422
41
+ omniopt2-7016.data/data/bin/.omniopt_plot_scatter_generation_method.py,sha256=rgKY_w1E516c9UucVaEvaKd8tCnoUq9xg-RrYSDzYEQ,4289
42
+ omniopt2-7016.data/data/bin/.omniopt_plot_scatter_hex.py,sha256=w1L5gL6Bc_QudoSJi2lxEVvF17Apjjb3l2T-lXGnsUg,10279
43
+ omniopt2-7016.data/data/bin/.omniopt_plot_time_and_exit_code.py,sha256=hC4RFDiJN_UImezFR6M5uVF-QKDqMDpq6R5DIg7dDDc,6463
44
+ omniopt2-7016.data/data/bin/.omniopt_plot_trial_index_result.py,sha256=5DmqZAQO_PFmzdap-TIhSMAshRXpOHQacnHAtjwnzN4,4629
45
+ omniopt2-7016.data/data/bin/.omniopt_plot_worker.py,sha256=VuluQq4W6KRR5RU08dxmDSFk5mbfDRkRJQFwwcLgAGw,4524
46
+ omniopt2-7016.data/data/bin/.random_generator.py,sha256=ezBBUXpez_QaGdpCglMcJ0KZPdQP0XdX5gnLzO1xhwU,2987
47
+ omniopt2-7016.data/data/bin/.shellscript_functions,sha256=7IjirQJpC7TCRPuRj1dO2W6A8h5cHt0dVzj6eH_2EiQ,14664
48
+ omniopt2-7016.data/data/bin/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
49
+ omniopt2-7016.data/data/bin/apt-dependencies.txt,sha256=X5tBB8ZLW9XaFtRh8B7C2pIkSoxNNawqioDr0QZAtuM,149
50
+ omniopt2-7016.data/data/bin/omniopt,sha256=RIi0yZALrZGefiejun1fkDJ0LX95WymXd2xZFlglMsQ,48072
51
+ omniopt2-7016.data/data/bin/omniopt_docker,sha256=LWVUeyvmA5AKqAHiH9jBUkR5uZ6AHMnSy0eET7mK6E4,3602
52
+ omniopt2-7016.data/data/bin/omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
53
+ omniopt2-7016.data/data/bin/omniopt_plot,sha256=Z8ZR10p-ZRSgMeVPO-wVCJ8lk-LQtntjZ9Bk9RifCIs,13360
54
+ omniopt2-7016.data/data/bin/omniopt_share,sha256=7g5I7YdoWcA6_GDwWwq0xPf23qiVc_VDrm9ySLH7SH0,14051
55
+ omniopt2-7016.data/data/bin/requirements.txt,sha256=gj9r1kqJK9w1q6YJuViWlq7U0GZf5SOYVO1Ndcy24L0,280
56
+ omniopt2-7016.data/data/bin/setup.py,sha256=g3uEqJHXhggXwgLYoxOjsXg9Z6IV1ubh-Og59AZ264Q,4648
57
+ omniopt2-7016.data/data/bin/test_requirements.txt,sha256=dnCbKmKalrVzNZ_-iQWf1xCxcnDsdGuhbDAr9XlGm-U,477
58
+ omniopt2-7016.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
59
+ omniopt2.egg-info/PKG-INFO,sha256=zD8XqFLfi0GitUE3rhiWkSCE4NZkytu51sGVLCThuCw,5792
60
+ omniopt2.egg-info/SOURCES.txt,sha256=kXBlYs2_3BE6tKUH1egGFa_9X5w8EQ5pm9dKgPEvdhY,770
61
+ omniopt2.egg-info/dependency_links.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
62
+ omniopt2.egg-info/requires.txt,sha256=rH_jC1LI0Ch8b5iWYh7EFq1ylyc9uswwZnyPZnlp9Qo,757
63
+ omniopt2.egg-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
64
+ omniopt2-7016.dist-info/METADATA,sha256=zD8XqFLfi0GitUE3rhiWkSCE4NZkytu51sGVLCThuCw,5792
65
+ omniopt2-7016.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
66
+ omniopt2-7016.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
67
+ omniopt2-7016.dist-info/RECORD,,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: omniopt2
3
- Version: 7014
3
+ Version: 7016
4
4
  Summary: Automatic highly parallelized hyperparameter optimizer based on Ax/Botorch
5
5
  Home-page: https://scads.ai/transfer-2/verfuegbare-software-dienste-en/omniopt/
6
6
  Author: Norman Koch
pyproject.toml CHANGED
@@ -5,7 +5,7 @@ authors = [
5
5
  {email = "norman.koch@tu-dresden.de"},
6
6
  {name = "Norman Koch"}
7
7
  ]
8
- version = "7014"
8
+ version = "7016"
9
9
 
10
10
  readme = "README.md"
11
11
  dynamic = ["dependencies"]
@@ -1,67 +0,0 @@
1
- .colorfunctions.sh,sha256=CDlgjwrsrHR_E6c-Qak5wZlotArXm-nf9sVvXePzGZA,1083
2
- .dockerignore,sha256=vtgV4tvVZdmusf1z7MYscSBo_UTtHMG6T7Knb4llBvo,11
3
- .general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
4
- .gitignore,sha256=OMaFWOR6wxjAlI85rF3euQcjQFFAl1F34abZkltKnaU,3714
5
- .helpers.py,sha256=srrRn0QBzG8JpNbHAYG2k1rQY6JYrUrNdTj-tDMJSyg,30526
6
- .omniopt.py,sha256=ShAsbZkIx57DwSIQwY0grfaSdnlEN9pmZ91GChyJZWM,372157
7
- .omniopt_plot_cpu_ram_usage.py,sha256=fwO9SypMosky4Q4AqMPqDVSHIyiMq2rt1cWFfg0mL7Q,4164
8
- .omniopt_plot_general.py,sha256=aDVbDVJmwyr7fn0r62ZZcxsMPym8Kwscc41__hDUCNo,7045
9
- .omniopt_plot_gpu_usage.py,sha256=3KI5dedQQ3u_IUMKOrwIOzyyDmSwaGa8MeluQUNQwFE,5363
10
- .omniopt_plot_kde.py,sha256=Wte6vgto_5zddqKiMJyDSFcKnsvDdIqsaik-_PI2ahU,7105
11
- .omniopt_plot_scatter.py,sha256=VFkly4lbmXeegWoyiu1fLO82JThPJa_iYVZIAPGPP64,8670
12
- .omniopt_plot_scatter_generation_method.py,sha256=inBo8S0LFr8mzN61a6RH0f_ehCGBV0VxgRYRLkh1z6Q,4521
13
- .omniopt_plot_scatter_hex.py,sha256=6014iELQcS83WAAwOqVIUMZQewNP4jntlTQncTY3NTA,10527
14
- .omniopt_plot_time_and_exit_code.py,sha256=85YKOn6Yw5nA1_tMJjgLihgknHdr_ClFHaaP7zQVHVw,6695
15
- .omniopt_plot_trial_index_result.py,sha256=akwH5P7_5bnFwLuISlSmHUX_fXY66VdDj7bx7VoYoBA,4861
16
- .omniopt_plot_worker.py,sha256=d9zy-M4icRKbVhOAfpHVFwTnrYuV0YuaSeT_xkVw8x4,4756
17
- .random_generator.py,sha256=ezBBUXpez_QaGdpCglMcJ0KZPdQP0XdX5gnLzO1xhwU,2987
18
- .shellscript_functions,sha256=7IjirQJpC7TCRPuRj1dO2W6A8h5cHt0dVzj6eH_2EiQ,14664
19
- LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
20
- MANIFEST.in,sha256=L3QBXyL1TtyWxbAPsfjZdCfpeBrRuI5MSgdnvwdQ22Q,24
21
- README.md,sha256=ImtT_VuWENewZKkJySRL_qpbHbs0pr6Xgs_n9HURg90,3332
22
- apt-dependencies.txt,sha256=X5tBB8ZLW9XaFtRh8B7C2pIkSoxNNawqioDr0QZAtuM,149
23
- omniopt,sha256=RIi0yZALrZGefiejun1fkDJ0LX95WymXd2xZFlglMsQ,48072
24
- omniopt_docker,sha256=LWVUeyvmA5AKqAHiH9jBUkR5uZ6AHMnSy0eET7mK6E4,3602
25
- omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
26
- omniopt_plot,sha256=Z8ZR10p-ZRSgMeVPO-wVCJ8lk-LQtntjZ9Bk9RifCIs,13360
27
- omniopt_share,sha256=7g5I7YdoWcA6_GDwWwq0xPf23qiVc_VDrm9ySLH7SH0,14051
28
- pyproject.toml,sha256=XEpLmiMdIsHlKChOte3sOvqMTibGBkz375L6tVwHdXo,397
29
- requirements.txt,sha256=gj9r1kqJK9w1q6YJuViWlq7U0GZf5SOYVO1Ndcy24L0,280
30
- setup.cfg,sha256=HEc8uu6NpfxG5_AVh5SvXOpEFMNKPPPxgMIAH144vT4,38
31
- test_requirements.txt,sha256=dnCbKmKalrVzNZ_-iQWf1xCxcnDsdGuhbDAr9XlGm-U,477
32
- omniopt2-7014.data/data/bin/.colorfunctions.sh,sha256=CDlgjwrsrHR_E6c-Qak5wZlotArXm-nf9sVvXePzGZA,1083
33
- omniopt2-7014.data/data/bin/.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
34
- omniopt2-7014.data/data/bin/.helpers.py,sha256=srrRn0QBzG8JpNbHAYG2k1rQY6JYrUrNdTj-tDMJSyg,30526
35
- omniopt2-7014.data/data/bin/.omniopt.py,sha256=ShAsbZkIx57DwSIQwY0grfaSdnlEN9pmZ91GChyJZWM,372157
36
- omniopt2-7014.data/data/bin/.omniopt_plot_cpu_ram_usage.py,sha256=fwO9SypMosky4Q4AqMPqDVSHIyiMq2rt1cWFfg0mL7Q,4164
37
- omniopt2-7014.data/data/bin/.omniopt_plot_general.py,sha256=aDVbDVJmwyr7fn0r62ZZcxsMPym8Kwscc41__hDUCNo,7045
38
- omniopt2-7014.data/data/bin/.omniopt_plot_gpu_usage.py,sha256=3KI5dedQQ3u_IUMKOrwIOzyyDmSwaGa8MeluQUNQwFE,5363
39
- omniopt2-7014.data/data/bin/.omniopt_plot_kde.py,sha256=Wte6vgto_5zddqKiMJyDSFcKnsvDdIqsaik-_PI2ahU,7105
40
- omniopt2-7014.data/data/bin/.omniopt_plot_scatter.py,sha256=VFkly4lbmXeegWoyiu1fLO82JThPJa_iYVZIAPGPP64,8670
41
- omniopt2-7014.data/data/bin/.omniopt_plot_scatter_generation_method.py,sha256=inBo8S0LFr8mzN61a6RH0f_ehCGBV0VxgRYRLkh1z6Q,4521
42
- omniopt2-7014.data/data/bin/.omniopt_plot_scatter_hex.py,sha256=6014iELQcS83WAAwOqVIUMZQewNP4jntlTQncTY3NTA,10527
43
- omniopt2-7014.data/data/bin/.omniopt_plot_time_and_exit_code.py,sha256=85YKOn6Yw5nA1_tMJjgLihgknHdr_ClFHaaP7zQVHVw,6695
44
- omniopt2-7014.data/data/bin/.omniopt_plot_trial_index_result.py,sha256=akwH5P7_5bnFwLuISlSmHUX_fXY66VdDj7bx7VoYoBA,4861
45
- omniopt2-7014.data/data/bin/.omniopt_plot_worker.py,sha256=d9zy-M4icRKbVhOAfpHVFwTnrYuV0YuaSeT_xkVw8x4,4756
46
- omniopt2-7014.data/data/bin/.random_generator.py,sha256=ezBBUXpez_QaGdpCglMcJ0KZPdQP0XdX5gnLzO1xhwU,2987
47
- omniopt2-7014.data/data/bin/.shellscript_functions,sha256=7IjirQJpC7TCRPuRj1dO2W6A8h5cHt0dVzj6eH_2EiQ,14664
48
- omniopt2-7014.data/data/bin/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
49
- omniopt2-7014.data/data/bin/apt-dependencies.txt,sha256=X5tBB8ZLW9XaFtRh8B7C2pIkSoxNNawqioDr0QZAtuM,149
50
- omniopt2-7014.data/data/bin/omniopt,sha256=RIi0yZALrZGefiejun1fkDJ0LX95WymXd2xZFlglMsQ,48072
51
- omniopt2-7014.data/data/bin/omniopt_docker,sha256=LWVUeyvmA5AKqAHiH9jBUkR5uZ6AHMnSy0eET7mK6E4,3602
52
- omniopt2-7014.data/data/bin/omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
53
- omniopt2-7014.data/data/bin/omniopt_plot,sha256=Z8ZR10p-ZRSgMeVPO-wVCJ8lk-LQtntjZ9Bk9RifCIs,13360
54
- omniopt2-7014.data/data/bin/omniopt_share,sha256=7g5I7YdoWcA6_GDwWwq0xPf23qiVc_VDrm9ySLH7SH0,14051
55
- omniopt2-7014.data/data/bin/requirements.txt,sha256=gj9r1kqJK9w1q6YJuViWlq7U0GZf5SOYVO1Ndcy24L0,280
56
- omniopt2-7014.data/data/bin/setup.py,sha256=g3uEqJHXhggXwgLYoxOjsXg9Z6IV1ubh-Og59AZ264Q,4648
57
- omniopt2-7014.data/data/bin/test_requirements.txt,sha256=dnCbKmKalrVzNZ_-iQWf1xCxcnDsdGuhbDAr9XlGm-U,477
58
- omniopt2-7014.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
59
- omniopt2.egg-info/PKG-INFO,sha256=nacahG-dj4ZOR1jRJY-5dX-WPEOs_ah-kQIZjzY5hos,5792
60
- omniopt2.egg-info/SOURCES.txt,sha256=kXBlYs2_3BE6tKUH1egGFa_9X5w8EQ5pm9dKgPEvdhY,770
61
- omniopt2.egg-info/dependency_links.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
62
- omniopt2.egg-info/requires.txt,sha256=rH_jC1LI0Ch8b5iWYh7EFq1ylyc9uswwZnyPZnlp9Qo,757
63
- omniopt2.egg-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
64
- omniopt2-7014.dist-info/METADATA,sha256=nacahG-dj4ZOR1jRJY-5dX-WPEOs_ah-kQIZjzY5hos,5792
65
- omniopt2-7014.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
66
- omniopt2-7014.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
67
- omniopt2-7014.dist-info/RECORD,,