omniopt2 7151__py3-none-any.whl → 7156__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- .omniopt.py +6 -1
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/.omniopt.py +6 -1
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/omniopt_share +13 -5
- {omniopt2-7151.dist-info → omniopt2-7156.dist-info}/METADATA +1 -1
- {omniopt2-7151.dist-info → omniopt2-7156.dist-info}/RECORD +36 -36
- omniopt2.egg-info/PKG-INFO +1 -1
- omniopt_share +13 -5
- pyproject.toml +1 -1
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/.colorfunctions.sh +0 -0
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/.general.sh +0 -0
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/.helpers.py +0 -0
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/.omniopt_plot_cpu_ram_usage.py +0 -0
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/.omniopt_plot_general.py +0 -0
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/.omniopt_plot_gpu_usage.py +0 -0
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/.omniopt_plot_kde.py +0 -0
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/.omniopt_plot_scatter.py +0 -0
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/.omniopt_plot_scatter_generation_method.py +0 -0
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/.omniopt_plot_scatter_hex.py +0 -0
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/.omniopt_plot_time_and_exit_code.py +0 -0
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/.omniopt_plot_trial_index_result.py +0 -0
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/.omniopt_plot_worker.py +0 -0
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/.random_generator.py +0 -0
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/.shellscript_functions +0 -0
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/.tpe.py +0 -0
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/LICENSE +0 -0
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/apt-dependencies.txt +0 -0
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/omniopt +0 -0
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/omniopt_docker +0 -0
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/omniopt_evaluate +0 -0
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/omniopt_plot +0 -0
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/requirements.txt +0 -0
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/setup.py +0 -0
- {omniopt2-7151.data → omniopt2-7156.data}/data/bin/test_requirements.txt +0 -0
- {omniopt2-7151.dist-info → omniopt2-7156.dist-info}/WHEEL +0 -0
- {omniopt2-7151.dist-info → omniopt2-7156.dist-info}/licenses/LICENSE +0 -0
- {omniopt2-7151.dist-info → omniopt2-7156.dist-info}/top_level.txt +0 -0
.omniopt.py
CHANGED
@@ -558,6 +558,7 @@ class ConfigLoader:
|
|
558
558
|
checkout_to_latest_tested_version: bool
|
559
559
|
load_data_from_existing_jobs: List[str]
|
560
560
|
time: str
|
561
|
+
share_password: Optional[str]
|
561
562
|
generate_all_jobs_at_once: bool
|
562
563
|
result_names: Optional[List[str]]
|
563
564
|
verbose_break_run_search_table: bool
|
@@ -653,6 +654,7 @@ class ConfigLoader:
|
|
653
654
|
optional.add_argument('--show_generate_time_table', help='Generate a table at the end, showing how much time was spent trying to generate new points', action='store_true', default=False)
|
654
655
|
optional.add_argument('--force_choice_for_ranges', help='Force float ranges to be converted to choice', action='store_true', default=False)
|
655
656
|
optional.add_argument('--max_abandoned_retrial', help='Maximum number retrials to get when a job is abandoned post-generation', default=20, type=int)
|
657
|
+
optional.add_argument('--share_password', help='Use this as a password for share. Default is none.', default=None, type=str)
|
656
658
|
|
657
659
|
speed.add_argument('--dont_warm_start_refitting', help='Do not keep Model weights, thus, refit for every generator (may be more accurate, but slower)', action='store_true', default=False)
|
658
660
|
speed.add_argument('--refit_on_cv', help='Refit on Cross-Validation (helps in accuracy, but makes generating new points slower)', action='store_true', default=False)
|
@@ -1335,7 +1337,7 @@ class ExternalProgramGenerationNode(ExternalGenerationNode):
|
|
1335
1337
|
return temp_dir
|
1336
1338
|
|
1337
1339
|
@beartype
|
1338
|
-
def get_next_candidate(self: Any, pending_parameters: List[
|
1340
|
+
def get_next_candidate(self: Any, pending_parameters: List[TParameterization]) -> Any:
|
1339
1341
|
if self.parameters is None:
|
1340
1342
|
raise RuntimeError("Parameters are not initialized. Call update_generator_state first.")
|
1341
1343
|
|
@@ -1456,6 +1458,9 @@ def run_live_share_command(force: bool = False) -> Tuple[str, str]:
|
|
1456
1458
|
if force:
|
1457
1459
|
_command = f"{_command} --force"
|
1458
1460
|
|
1461
|
+
if args.share_password:
|
1462
|
+
_command = f"{_command} --password='{args.share_password}'"
|
1463
|
+
|
1459
1464
|
if not shown_run_live_share_command:
|
1460
1465
|
print_debug(f"run_live_share_command: {_command}")
|
1461
1466
|
shown_run_live_share_command = True
|
@@ -558,6 +558,7 @@ class ConfigLoader:
|
|
558
558
|
checkout_to_latest_tested_version: bool
|
559
559
|
load_data_from_existing_jobs: List[str]
|
560
560
|
time: str
|
561
|
+
share_password: Optional[str]
|
561
562
|
generate_all_jobs_at_once: bool
|
562
563
|
result_names: Optional[List[str]]
|
563
564
|
verbose_break_run_search_table: bool
|
@@ -653,6 +654,7 @@ class ConfigLoader:
|
|
653
654
|
optional.add_argument('--show_generate_time_table', help='Generate a table at the end, showing how much time was spent trying to generate new points', action='store_true', default=False)
|
654
655
|
optional.add_argument('--force_choice_for_ranges', help='Force float ranges to be converted to choice', action='store_true', default=False)
|
655
656
|
optional.add_argument('--max_abandoned_retrial', help='Maximum number retrials to get when a job is abandoned post-generation', default=20, type=int)
|
657
|
+
optional.add_argument('--share_password', help='Use this as a password for share. Default is none.', default=None, type=str)
|
656
658
|
|
657
659
|
speed.add_argument('--dont_warm_start_refitting', help='Do not keep Model weights, thus, refit for every generator (may be more accurate, but slower)', action='store_true', default=False)
|
658
660
|
speed.add_argument('--refit_on_cv', help='Refit on Cross-Validation (helps in accuracy, but makes generating new points slower)', action='store_true', default=False)
|
@@ -1335,7 +1337,7 @@ class ExternalProgramGenerationNode(ExternalGenerationNode):
|
|
1335
1337
|
return temp_dir
|
1336
1338
|
|
1337
1339
|
@beartype
|
1338
|
-
def get_next_candidate(self: Any, pending_parameters: List[
|
1340
|
+
def get_next_candidate(self: Any, pending_parameters: List[TParameterization]) -> Any:
|
1339
1341
|
if self.parameters is None:
|
1340
1342
|
raise RuntimeError("Parameters are not initialized. Call update_generator_state first.")
|
1341
1343
|
|
@@ -1456,6 +1458,9 @@ def run_live_share_command(force: bool = False) -> Tuple[str, str]:
|
|
1456
1458
|
if force:
|
1457
1459
|
_command = f"{_command} --force"
|
1458
1460
|
|
1461
|
+
if args.share_password:
|
1462
|
+
_command = f"{_command} --password='{args.share_password}'"
|
1463
|
+
|
1459
1464
|
if not shown_run_live_share_command:
|
1460
1465
|
print_debug(f"run_live_share_command: {_command}")
|
1461
1466
|
shown_run_live_share_command = True
|
@@ -62,6 +62,7 @@
|
|
62
62
|
#keep_tmp_dir=0
|
63
63
|
folders_to_share=()
|
64
64
|
username=$USER
|
65
|
+
password=""
|
65
66
|
outfile=
|
66
67
|
send_single_runs=1
|
67
68
|
|
@@ -88,6 +89,7 @@
|
|
88
89
|
echo " --no_color Disables color output"
|
89
90
|
echo " --force Ignores cache"
|
90
91
|
echo " --username=s3811141 Specify username (with or without = sign)"
|
92
|
+
echo " --password=abcdef123 Specify a password for this run"
|
91
93
|
echo " --dont_send_singleruns Don't send single runs"
|
92
94
|
#echo " --keep_tmp_dir Keeps the tmp dir, prints it as well"
|
93
95
|
echo " --outfile=slurm-12345.out Path to the outfile"
|
@@ -116,8 +118,10 @@
|
|
116
118
|
# keep_tmp_dir=1
|
117
119
|
elif [ "$arg" == "--no_color" ]; then
|
118
120
|
no_color=1
|
121
|
+
elif [[ "$arg" == --password=* ]]; then
|
122
|
+
password="${arg#--password=}"
|
119
123
|
elif [[ "$arg" == --outfile=* ]]; then
|
120
|
-
outfile="${arg#--
|
124
|
+
outfile="${arg#--outfile=}"
|
121
125
|
elif [[ "$arg" == --username=* ]]; then
|
122
126
|
username="${arg#--username=}"
|
123
127
|
DONT_ASK_USERNAME=1
|
@@ -278,10 +282,10 @@
|
|
278
282
|
if command -v zip 2>/dev/null >/dev/null; then
|
279
283
|
zip -r $everything_but_singleruns . -x "single_runs/*" >/dev/null || {
|
280
284
|
red_text "zip -r $everything_but_singleruns . -x \"single_runs/*\" failed"
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
+
exit 1
|
286
|
+
}
|
287
|
+
else
|
288
|
+
red_text "zip not found. You will not be able to continue this job from the URL."
|
285
289
|
fi
|
286
290
|
|
287
291
|
curl_options+=("-F" "everything_but_singleruns.zip=@$everything_but_singleruns")
|
@@ -439,6 +443,10 @@
|
|
439
443
|
green_text "No update needed"
|
440
444
|
fi
|
441
445
|
else
|
446
|
+
if [[ $password != "" ]]; then
|
447
|
+
url="$url&password=$password"
|
448
|
+
fi
|
449
|
+
|
442
450
|
if [[ $DEBUG -eq 1 ]]; then
|
443
451
|
echo "curl -s ${curl_options[@]} $url"
|
444
452
|
fi
|
@@ -3,7 +3,7 @@
|
|
3
3
|
.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
|
4
4
|
.gitignore,sha256=OMaFWOR6wxjAlI85rF3euQcjQFFAl1F34abZkltKnaU,3714
|
5
5
|
.helpers.py,sha256=6uoxzpi8zfvvQy16LpGkIC1OzvDC8TR8luAOX1iW1OM,30679
|
6
|
-
.omniopt.py,sha256=
|
6
|
+
.omniopt.py,sha256=ulpRwQm-TOWNSrIPf2ecP7JbFJF02l7t52aB86YsImI,383387
|
7
7
|
.omniopt_plot_cpu_ram_usage.py,sha256=DbOAmdrbcZtsMnHJgHfeRngjtv6zX5J0axyua_dYezc,3932
|
8
8
|
.omniopt_plot_general.py,sha256=ZERZJkvVOoJhi7SszmTF1Iln-_08_0Aki48u3LHUW-k,6809
|
9
9
|
.omniopt_plot_gpu_usage.py,sha256=ojxVicwSoiyl7f3c-6lLuT2EpyPcSJKEcbp75LgDY2k,5107
|
@@ -25,45 +25,45 @@ omniopt,sha256=3JRBCx_MjkcRlc0y80VNxV0cH0Zs4Va95pU4ojk9dlU,47447
|
|
25
25
|
omniopt_docker,sha256=LWVUeyvmA5AKqAHiH9jBUkR5uZ6AHMnSy0eET7mK6E4,3602
|
26
26
|
omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
|
27
27
|
omniopt_plot,sha256=Z8ZR10p-ZRSgMeVPO-wVCJ8lk-LQtntjZ9Bk9RifCIs,13360
|
28
|
-
omniopt_share,sha256=
|
29
|
-
pyproject.toml,sha256=
|
28
|
+
omniopt_share,sha256=olMVi4SrDhOHWxFIFod86YVxHJfOUQdsPoWHYUHONbc,14274
|
29
|
+
pyproject.toml,sha256=FS_WJOY3AmLZxajAjQ_VH37_HG7wcU_o4g3796tkcQs,397
|
30
30
|
requirements.txt,sha256=jqvp-P5m33fwsODnA_FFVVujUwIt9z_nhBRIxAtahcQ,302
|
31
31
|
setup.cfg,sha256=HEc8uu6NpfxG5_AVh5SvXOpEFMNKPPPxgMIAH144vT4,38
|
32
32
|
test_requirements.txt,sha256=dnCbKmKalrVzNZ_-iQWf1xCxcnDsdGuhbDAr9XlGm-U,477
|
33
|
-
omniopt2-
|
34
|
-
omniopt2-
|
35
|
-
omniopt2-
|
36
|
-
omniopt2-
|
37
|
-
omniopt2-
|
38
|
-
omniopt2-
|
39
|
-
omniopt2-
|
40
|
-
omniopt2-
|
41
|
-
omniopt2-
|
42
|
-
omniopt2-
|
43
|
-
omniopt2-
|
44
|
-
omniopt2-
|
45
|
-
omniopt2-
|
46
|
-
omniopt2-
|
47
|
-
omniopt2-
|
48
|
-
omniopt2-
|
49
|
-
omniopt2-
|
50
|
-
omniopt2-
|
51
|
-
omniopt2-
|
52
|
-
omniopt2-
|
53
|
-
omniopt2-
|
54
|
-
omniopt2-
|
55
|
-
omniopt2-
|
56
|
-
omniopt2-
|
57
|
-
omniopt2-
|
58
|
-
omniopt2-
|
59
|
-
omniopt2-
|
60
|
-
omniopt2-
|
61
|
-
omniopt2.egg-info/PKG-INFO,sha256=
|
33
|
+
omniopt2-7156.data/data/bin/.colorfunctions.sh,sha256=x6RGjZAkQR24oS-0uatyX55KS-UVcPQWTCC8egI5Y9o,1227
|
34
|
+
omniopt2-7156.data/data/bin/.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
|
35
|
+
omniopt2-7156.data/data/bin/.helpers.py,sha256=6uoxzpi8zfvvQy16LpGkIC1OzvDC8TR8luAOX1iW1OM,30679
|
36
|
+
omniopt2-7156.data/data/bin/.omniopt.py,sha256=ulpRwQm-TOWNSrIPf2ecP7JbFJF02l7t52aB86YsImI,383387
|
37
|
+
omniopt2-7156.data/data/bin/.omniopt_plot_cpu_ram_usage.py,sha256=DbOAmdrbcZtsMnHJgHfeRngjtv6zX5J0axyua_dYezc,3932
|
38
|
+
omniopt2-7156.data/data/bin/.omniopt_plot_general.py,sha256=ZERZJkvVOoJhi7SszmTF1Iln-_08_0Aki48u3LHUW-k,6809
|
39
|
+
omniopt2-7156.data/data/bin/.omniopt_plot_gpu_usage.py,sha256=ojxVicwSoiyl7f3c-6lLuT2EpyPcSJKEcbp75LgDY2k,5107
|
40
|
+
omniopt2-7156.data/data/bin/.omniopt_plot_kde.py,sha256=uRLWr72TDKvj3AqJ0O0AvkKZ1ok1O1QpXnbfQQdo0nA,6873
|
41
|
+
omniopt2-7156.data/data/bin/.omniopt_plot_scatter.py,sha256=-amqmLR_YLCbHImLPh6gwVFv8iiVnXME544XHsRVCuw,8422
|
42
|
+
omniopt2-7156.data/data/bin/.omniopt_plot_scatter_generation_method.py,sha256=rgKY_w1E516c9UucVaEvaKd8tCnoUq9xg-RrYSDzYEQ,4289
|
43
|
+
omniopt2-7156.data/data/bin/.omniopt_plot_scatter_hex.py,sha256=w1L5gL6Bc_QudoSJi2lxEVvF17Apjjb3l2T-lXGnsUg,10279
|
44
|
+
omniopt2-7156.data/data/bin/.omniopt_plot_time_and_exit_code.py,sha256=hC4RFDiJN_UImezFR6M5uVF-QKDqMDpq6R5DIg7dDDc,6463
|
45
|
+
omniopt2-7156.data/data/bin/.omniopt_plot_trial_index_result.py,sha256=5DmqZAQO_PFmzdap-TIhSMAshRXpOHQacnHAtjwnzN4,4629
|
46
|
+
omniopt2-7156.data/data/bin/.omniopt_plot_worker.py,sha256=VuluQq4W6KRR5RU08dxmDSFk5mbfDRkRJQFwwcLgAGw,4524
|
47
|
+
omniopt2-7156.data/data/bin/.random_generator.py,sha256=ezBBUXpez_QaGdpCglMcJ0KZPdQP0XdX5gnLzO1xhwU,2987
|
48
|
+
omniopt2-7156.data/data/bin/.shellscript_functions,sha256=IRbIX0-BBxkQGxWBFBc-RdaGj6Rs_zu3gkxAWd5fL2k,14839
|
49
|
+
omniopt2-7156.data/data/bin/.tpe.py,sha256=Yd9s-ixCbWxTd3x0O1M1sok9QfM2mBEfsDwXhx50-Nc,6464
|
50
|
+
omniopt2-7156.data/data/bin/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
51
|
+
omniopt2-7156.data/data/bin/apt-dependencies.txt,sha256=X5tBB8ZLW9XaFtRh8B7C2pIkSoxNNawqioDr0QZAtuM,149
|
52
|
+
omniopt2-7156.data/data/bin/omniopt,sha256=3JRBCx_MjkcRlc0y80VNxV0cH0Zs4Va95pU4ojk9dlU,47447
|
53
|
+
omniopt2-7156.data/data/bin/omniopt_docker,sha256=LWVUeyvmA5AKqAHiH9jBUkR5uZ6AHMnSy0eET7mK6E4,3602
|
54
|
+
omniopt2-7156.data/data/bin/omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
|
55
|
+
omniopt2-7156.data/data/bin/omniopt_plot,sha256=Z8ZR10p-ZRSgMeVPO-wVCJ8lk-LQtntjZ9Bk9RifCIs,13360
|
56
|
+
omniopt2-7156.data/data/bin/omniopt_share,sha256=olMVi4SrDhOHWxFIFod86YVxHJfOUQdsPoWHYUHONbc,14274
|
57
|
+
omniopt2-7156.data/data/bin/requirements.txt,sha256=jqvp-P5m33fwsODnA_FFVVujUwIt9z_nhBRIxAtahcQ,302
|
58
|
+
omniopt2-7156.data/data/bin/setup.py,sha256=g3uEqJHXhggXwgLYoxOjsXg9Z6IV1ubh-Og59AZ264Q,4648
|
59
|
+
omniopt2-7156.data/data/bin/test_requirements.txt,sha256=dnCbKmKalrVzNZ_-iQWf1xCxcnDsdGuhbDAr9XlGm-U,477
|
60
|
+
omniopt2-7156.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
61
|
+
omniopt2.egg-info/PKG-INFO,sha256=A-OorDk7skgko_wk2i75CFBSn1sOK0UvtqBJP7hZ0yA,5844
|
62
62
|
omniopt2.egg-info/SOURCES.txt,sha256=N-HtSaaqFRsd4XqAfeWVSp__3I-sw0d7cknJgyewRwQ,778
|
63
63
|
omniopt2.egg-info/dependency_links.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
64
64
|
omniopt2.egg-info/requires.txt,sha256=AoHFBcKgH-fRh6E2OhIgWce1ao2Bkk8LK0FWTsGhAIk,779
|
65
65
|
omniopt2.egg-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
66
|
-
omniopt2-
|
67
|
-
omniopt2-
|
68
|
-
omniopt2-
|
69
|
-
omniopt2-
|
66
|
+
omniopt2-7156.dist-info/METADATA,sha256=A-OorDk7skgko_wk2i75CFBSn1sOK0UvtqBJP7hZ0yA,5844
|
67
|
+
omniopt2-7156.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
68
|
+
omniopt2-7156.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
69
|
+
omniopt2-7156.dist-info/RECORD,,
|
omniopt2.egg-info/PKG-INFO
CHANGED
omniopt_share
CHANGED
@@ -62,6 +62,7 @@
|
|
62
62
|
#keep_tmp_dir=0
|
63
63
|
folders_to_share=()
|
64
64
|
username=$USER
|
65
|
+
password=""
|
65
66
|
outfile=
|
66
67
|
send_single_runs=1
|
67
68
|
|
@@ -88,6 +89,7 @@
|
|
88
89
|
echo " --no_color Disables color output"
|
89
90
|
echo " --force Ignores cache"
|
90
91
|
echo " --username=s3811141 Specify username (with or without = sign)"
|
92
|
+
echo " --password=abcdef123 Specify a password for this run"
|
91
93
|
echo " --dont_send_singleruns Don't send single runs"
|
92
94
|
#echo " --keep_tmp_dir Keeps the tmp dir, prints it as well"
|
93
95
|
echo " --outfile=slurm-12345.out Path to the outfile"
|
@@ -116,8 +118,10 @@
|
|
116
118
|
# keep_tmp_dir=1
|
117
119
|
elif [ "$arg" == "--no_color" ]; then
|
118
120
|
no_color=1
|
121
|
+
elif [[ "$arg" == --password=* ]]; then
|
122
|
+
password="${arg#--password=}"
|
119
123
|
elif [[ "$arg" == --outfile=* ]]; then
|
120
|
-
outfile="${arg#--
|
124
|
+
outfile="${arg#--outfile=}"
|
121
125
|
elif [[ "$arg" == --username=* ]]; then
|
122
126
|
username="${arg#--username=}"
|
123
127
|
DONT_ASK_USERNAME=1
|
@@ -278,10 +282,10 @@
|
|
278
282
|
if command -v zip 2>/dev/null >/dev/null; then
|
279
283
|
zip -r $everything_but_singleruns . -x "single_runs/*" >/dev/null || {
|
280
284
|
red_text "zip -r $everything_but_singleruns . -x \"single_runs/*\" failed"
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
+
exit 1
|
286
|
+
}
|
287
|
+
else
|
288
|
+
red_text "zip not found. You will not be able to continue this job from the URL."
|
285
289
|
fi
|
286
290
|
|
287
291
|
curl_options+=("-F" "everything_but_singleruns.zip=@$everything_but_singleruns")
|
@@ -439,6 +443,10 @@
|
|
439
443
|
green_text "No update needed"
|
440
444
|
fi
|
441
445
|
else
|
446
|
+
if [[ $password != "" ]]; then
|
447
|
+
url="$url&password=$password"
|
448
|
+
fi
|
449
|
+
|
442
450
|
if [[ $DEBUG -eq 1 ]]; then
|
443
451
|
echo "curl -s ${curl_options[@]} $url"
|
444
452
|
fi
|
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-7151.data → omniopt2-7156.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
|