-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Molpro can generate an error asking for more Mwords in multiple different ways. One of the outputs can appear like so: ```console For minimal I/O algorithm in triples, increase memory by 522.58 Mwords to 1522.63 Mwords. For full I/O caching in triples, increase memory by 3136.12 Mwords to 4136.17 Mwords. A further 111.29 Mwords of memory are needed for the triples to run. Increase memory to 1111.34 Mwords. GLOBAL ERROR fehler on processor 0 ``` Currently, our trsh.py will reverse search this test and pick up on the line ```console A further 111.29 Mwords of memory are needed for the triples to run. Increase memory to 1111.34 Mwords. ``` And then break the loop and increase the memory by 111.29Mwords (in this example). However, as it can be seen, there is suggestions for larger Mword increases but they are not parsed. Therefore, I have added into the trsh.py check to also look for the line ```console For full I/O caching in triples, increase memory by 3136.12 Mwords to 4136.17 Mwords. ```
- Loading branch information
Showing
5 changed files
with
649 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.