Issue1142

Title Update Github actions to new versions
Priority wish Status resolved
Superseder Nosy List florian, gabi, jendrik, malte, silvan
Assigned To Keywords
Optional summary
Pull Request: https://github.com/aibasel/downward/pull/224

Created on 2024-07-05.12:12:23 by florian, last changed by florian.

Summary
Pull Request: https://github.com/aibasel/downward/pull/224
Messages
msg11675 (view) Author: florian Date: 2024-07-25.18:31:16
Thanks. I merged the changes. I also updated the templates for creating containers to use the new SoPlex version. I don't think this needed a review as this is only used for the release and test the resulting containers anyway.

Hopefully we'll see green tests again soon.
msg11673 (view) Author: malte Date: 2024-07-25.16:00:16
And as discussed live, I think such changes of experimental results due to changes in the LP libraries are fine.
msg11672 (view) Author: malte Date: 2024-07-25.15:59:05
Pull request looks good to me, too.
msg11671 (view) Author: florian Date: 2024-07-24.10:22:19
I ran experiments to compare our SoPlex version to version 7.1.0. The results show some small but significant effects in both directions but are fine over all, in my opinion.

In more detail, I ran diverse potential heuristics, an operator-counting heuristic with SEQ and LM-cut constraints, and optimal landmark cost partitioning (still called lmcount in the report but that is just the display name). The revisions unfortunately don't have clear names but they are
  SoPlex 6.0.3+: e408c7d0
  SoPlex 7.1.0:  da503a02

The coverage only changes by +1 in two of the configs and by + 2 - 2 = 0 in the other.

Looking at the time scores, the effect is positive (+0.9) for the operator-counting heuristic. The effect seems to depend on the domain, with airport tasks benefiting the most with one extreme case only taking 75% of the time in the baseline. In the other direction Miconic loses the most with an extreme case using 108%. Most of the tasks are evenly distributed within +/- 10% of the original runtime though.

With potential heuristics, the picture is different: there is a negative effect (timescore -2.27) and 3-4 tasks of spider, snake, and freecell take way longer (snake/p09 has a factor of 6.9). The remaining tasks are mostly within +/-7% with 508 tasks slowing down and 381 speeding up.

Finally, the landmark heuristics slow down systematically by 2-3% (aggregated time score: -1.91) which can be clearly seen by zooming into this plot:
https://ai.dmi.unibas.ch/_visualizer/?c=eJx9j0tuwzAMRK9iaF1LdpKiRc6RvUFbrENAP0iUPw1y90oNCu-65JsZcvgQ6DgSpsFQYnFtRIOX7nP60F1r7OSz40bDe3eG7vQHxFsj5uhzGPca0N4CuQojGmBasFCOGQvZgMv2MXNlgj2DGZgsVvf-jxaiDxi59voi82u4M4d0VQpIaksyOxohyemuBtyKtwQdp6Iq7Ve3QtSKUsrY95eT0sBwjO3St7iAUccVyRDl9v16IvjItz3Uq-cCFoyJvKsdetlVy5QTeztYcsNKLhXl8TwwzHPEGdjHl_L8AeXheW0%3D

All in all, I would say the we can live with the negative effect and would update the SoPlex recommendation to 7.1.0.
msg11615 (view) Author: jendrik Date: 2024-07-09.10:52:10
The changes look good to me. After merging this, don't forget to update https://www.fast-downward.org/ForDevelopers/DevelopmentSetup with the new clang-tidy instructions for Ubuntu 22.04.
msg11613 (view) Author: florian Date: 2024-07-09.00:48:33
I didn't mention clang in the lists for Ubuntu and g++-13 is actually not available via apt on 22.04:

* corrected versions for GCC and Clang on Ubuntu:
  - should be g++-12, clang-15 (from 22.04) and g++14, clang-18 (from 24.04)




I found four kinds of problems with the new compilers:

1) A new warning came up with (Apple) clang >=15. I disabled it for now because I'm not sure if we want to change this:
  error: unqualified call to 'std::move' [-Werror,-Wunqualified-std-cast-call]
    preferred_operators = move(preferred_ops);
                          ^
                          std::

2) There were also some legit cases of warnings that older compilers didn't recognize. I fixed those.
    * unused variables in loops that were write-only
    * missing call to vector::reserve() before a loop of push_backs
    * std::string variable were a const reference would be enough.
    * complicated logic in if-statement that could be simplified with De Morgan's rules.

3) Our version of SoPlex doesn't compile anymore because it has an invalid assignment of an array. This is fixed in newer versions of Soplex but that would mean we have to upgrade the version of Soplex as well. We wanted to do this anyway when other fixes we are relying on were officially released. So far, we were using a specific commit that wasn't merged into the release branch back then. By now, the current releases merged this, so we could use them instead and avoid some special casing in the build instructions. But this will likely need experiments to evaluate the performance of the new version.

4) clang-tidy-12 was used for our style tests but is no longer available on ubuntu 24.04. Versions 14 and 15 are available on both LTS (22.04/24.04), but can cause a bug with clang in the Github actions similar to what we saw with clang-12. For clang-12 we had a workaround in the workflow but this doesn't work for clang-tidy-15. I suggest we use clang-tidy-16 which can be installed on 24.04 through apt and on 22.04 as a manual installation (https://askubuntu.com/questions/1473403/how-to-install-clang-16-on-22-04-lts).
msg11605 (view) Author: florian Date: 2024-07-05.12:12:23
Ubuntu released a new LTS and macos had two new versions since we last updated our tests. Given what we say on https://www.fast-downward.org/ForDevelopers/Requirements, we should update our tests:

* Python: we test the default Python version of the two latest Ubuntu LTS releases.
  - should be 3.10 (default for both 22.04 and 24.04)
  - we currently run 3.8 on 20.04 and 3.10 on 22.04
* GCC and Clang on Ubuntu: the latest GCC and Clang versions available via apt on the latest two Ubuntu LTS releases and the default GCC version in the latest Ubuntu LTS release.
  - should be 13 (from 22.04) and 14 (from 24.04)
  - we currently run 10 on 20.04 and 12 on 22.04
* Clang on macOS: we test the default AppleClang compiler on the latest two macOS versions available on GitHub actions.
  - should be macos 13 and 14 (default clang version is 15 with homebrew, 14 without)
  - we currently run tests on macos 11 and 12
* For the rest (MSVC on Windows, LP solvers, CMake) our tests match what we say on the website.
History
Date User Action Args
2024-07-25 18:31:16floriansetstatus: chatting -> resolved
messages: + msg11675
2024-07-25 16:00:16maltesetmessages: + msg11673
2024-07-25 15:59:05maltesetmessages: + msg11672
2024-07-24 10:22:19floriansetmessages: + msg11671
2024-07-12 16:21:01gabisetnosy: + gabi
2024-07-09 10:52:10jendriksetmessages: + msg11615
2024-07-09 00:49:32floriansetsummary: Pull Request: https://github.com/aibasel/downward/pull/224
2024-07-09 00:48:33floriansetstatus: unread -> chatting
messages: + msg11613
2024-07-05 12:12:23floriancreate