Skip to content

Commit

Permalink
240211.004308.HKT fix a failure of small verification
Browse files Browse the repository at this point in the history
  • Loading branch information
zaikunzhang committed Feb 10, 2024
1 parent e2020a8 commit 219b3be
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/profile_all_sq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,20 @@ jobs:
movefile(file, newfile);
end
- name: List problems that started but did not end
# The solver got stuck when solving these problems. Investigate what happened.
if: always()
shell: bash
run: |
solver=${{ matrix.solver }}
cd /tmp/${solver}_profile_prima/
ls ${solver}*_start -1 > ${solver}_prob_start
ls ${solver}*_end -1 > ${solver}_prob_end
diff ${solver}_prob_start ${solver}_prob_end > ${solver}_stuck || :
printf "\n\n>>>>>>>>>>>>>>>>\nProblems that started but did not end:\n\n"
cat ${solver}_stuck
printf "\n<<<<<<<<<<<<<<<<\n\n"
- name: Store artifacts
uses: actions/[email protected]
if: always() # Always run even if the workflow is canceled manually or due to overtime.
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/profile_cobyla_small_sq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,20 @@ jobs:
movefile(file, newfile);
end
- name: List problems that started but did not end
# The solver got stuck when solving these problems. Investigate what happened.
if: always()
shell: bash
run: |
solver=${{ matrix.solver }}
cd /tmp/${solver}_profile_prima/
ls ${solver}*_start -1 > ${solver}_prob_start
ls ${solver}*_end -1 > ${solver}_prob_end
diff ${solver}_prob_start ${solver}_prob_end > ${solver}_stuck || :
printf "\n\n>>>>>>>>>>>>>>>>\nProblems that started but did not end:\n\n"
cat ${solver}_stuck
printf "\n<<<<<<<<<<<<<<<<\n\n"
- name: Store artifacts
uses: actions/[email protected]
if: always() # Always run even if the workflow is canceled manually or due to overtime.
Expand Down
3 changes: 3 additions & 0 deletions matlab/tests/private/isequiv.m
Original file line number Diff line number Diff line change
Expand Up @@ -684,6 +684,7 @@ function isequiv(solvers, options)
'CHNRSNBM', ...
'ERRINROS', ...
'METHANB8LS', ...
'TOINTGOR', ...
'TOINTPSP', ...
'VANDANMSLS', ...
}];
Expand All @@ -692,6 +693,7 @@ function isequiv(solvers, options)
'CHNROSNB', ...
'CHNRSNBM', ...
'ERRINROS', ...
'TOINTGOR', ...
'TOINTPSP', ...
'VANDANMSLS', ...
}];
Expand All @@ -706,6 +708,7 @@ function isequiv(solvers, options)
'DALLASS', ...
'ERRINRSM', ...
'LSQFIT', ...
'METHANL8LS', ...
'SIM2BQP', ...
'TOINTGOR', ...
'TOINTPSP', ...
Expand Down

0 comments on commit 219b3be

Please sign in to comment.