Skip to content

Commit 74f815f

Browse files
committed
250801.010644.PDT revoke the changes to profile_cobyla_small.yml
1 parent 84b50d9 commit 74f815f

File tree

1 file changed

+3
-14
lines changed

1 file changed

+3
-14
lines changed

.github/workflows/profile_cobyla_small.yml

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ jobs:
2929
matlab: [latest]
3030
dim: [small]
3131
solver: [cobylal, cobylan]
32-
#competitor: [classical, archiva, norma]
33-
competitor: [norma]
32+
competitor: [classical, archiva, norma]
3433
with_optim_toolbox: [yes, no]
3534
ctol_indicator: [0, 1, 2]
3635
exclude:
@@ -130,20 +129,11 @@ jobs:
130129
options = struct();
131130
options.nr = 3;
132131
options.ctol_multiple = 10^(2*str2num('${{ matrix.ctol_indicator }}'));
133-
options.debug=true;
134132
135-
try
136133
if strcmp('${{ matrix.solver }}', 'cobylal')
137-
prof('cobyla', '${{ matrix.dim }}', 'l', '${{ matrix.competitor }}', 'seq', options);
134+
prof('cobyla', '${{ matrix.dim }}', 'l', '${{ matrix.competitor }}', options);
138135
elseif strcmp('${{ matrix.solver }}', 'cobylan')
139-
prof('cobyla', '${{ matrix.dim }}', 'n', '${{ matrix.competitor }}', 'seq', options);
140-
end
141-
catch exception
142-
% If an exception occurs, we will copy the crash dump files to root_dir.
143-
% This is useful for debugging the test failures.
144-
copy_crash_dump_files(root_dir)
145-
dir(root_dir)
146-
rethrow(exception);
136+
prof('cobyla', '${{ matrix.dim }}', 'n', '${{ matrix.competitor }}', options);
147137
end
148138
149139
@@ -187,7 +177,6 @@ jobs:
187177
with:
188178
name: artifact-${{ matrix.solver }}-${{ matrix.dim }}-${{ matrix.competitor }}-${{ matrix.with_optim_toolbox }}-${{ matrix.ctol_indicator }}
189179
path: |
190-
mathlab_crash_dump*
191180
/tmp/cobyla_profile_prima/*summary*.pdf
192181
/tmp/cobyla_profile_prima/*.txt
193182
/tmp/cobyla_profile_prima/*start*

0 commit comments

Comments
 (0)