Skip to content

Commit

Permalink
230928.154626.HKT misc
Browse files Browse the repository at this point in the history
  • Loading branch information
zaikunzhang committed Sep 28, 2023
1 parent 6b8d7b4 commit 52741b4
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint_hosted.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
android: true
dotnet: true
haskell: true
large-packages: true
large-packages: false
docker-images: true
swap-storage: false # Important, or the runner may be shut down due to memory starvation.

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/profile_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
android: true
dotnet: true
haskell: true
large-packages: true
large-packages: false
docker-images: true
swap-storage: false # Important, or the runner may be shut down due to memory starvation.

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/profile_compiler_options.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
android: true
dotnet: true
haskell: true
large-packages: true
large-packages: false
docker-images: true
swap-storage: false # Important, or the runner may be shut down due to memory starvation.

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/profile_quadruple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
android: true
dotnet: true
haskell: true
large-packages: true
large-packages: false
docker-images: true
swap-storage: false # Important, or the runner may be shut down due to memory starvation.

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/profile_rescue_idz_classical.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
android: true
dotnet: true
haskell: true
large-packages: true
large-packages: false
docker-images: true
swap-storage: false # Important, or the runner may be shut down due to memory starvation.

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/profile_rescue_idz_modernized.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
android: true
dotnet: true
haskell: true
large-packages: true
large-packages: false
docker-images: true
swap-storage: false # Important, or the runner may be shut down due to memory starvation.

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/profile_single.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
android: true
dotnet: true
haskell: true
large-packages: true
large-packages: false
docker-images: true
swap-storage: false # Important, or the runner may be shut down due to memory starvation.

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/recursive_test_matlab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ jobs:
% Conduct the test multiple times, in case some errors occur not during the first time but later.
exception = [];
try
recursive('${{ matrix.solver }}', options);
options.compile = false;
recursive('${{ matrix.solver }}', options);
recursive('${{ matrix.solver }}', options);
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify_archiva.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
android: true
dotnet: true
haskell: true
large-packages: true
large-packages: false
docker-images: true
swap-storage: false # Important, or the runner may be shut down due to memory starvation.

Expand Down
6 changes: 3 additions & 3 deletions matlab/tests/parallel.m
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function recursive(solver, options)
if isfield(options, 'np')
np = options.np;
else
np = 64;
np = 32;
end

% Set up the solver
Expand Down Expand Up @@ -61,8 +61,8 @@ function recursive(solver, options)
opt = struct();
opt.iprint = 1;
opt.debug = true;
opt.rhoend = 1.0e-4;
opt.maxfun = min(100*n, 1e4);
opt.rhoend = 1.0e-6;
opt.maxfun = min(200*n, 2e4);

% We conduct two parallel tests, in case something does not finish correctly during the first run.
for i = 1 : 2
Expand Down
1 change: 1 addition & 0 deletions matlab/tests/private/isequiv.m
Original file line number Diff line number Diff line change
Expand Up @@ -823,6 +823,7 @@ function isequiv(solvers, options)
'DUAL4', ...
'DUALC5', ...
'ERRINROS', ...
'ERRINROSNE', ...
'ERRINRSM', ...
'ERRINRSMNE', ...
'FBRAIN3', ...
Expand Down

0 comments on commit 52741b4

Please sign in to comment.