-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(launcher): allow local launcher to work with xpress #2251
Merged
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
28cd574
feat(launcher): allow local launcher to work with xpress
MartinBelthle f086e46
continue work
MartinBelthle dd6f9e3
remove line
MartinBelthle d27b569
continue work
MartinBelthle 671686d
add doc
MartinBelthle 4287e68
fix linting
MartinBelthle 970b4bb
add unit test for local launcher
MartinBelthle 3d78e2e
get binary for Alexander
MartinBelthle 460e021
use solver 8.8.11 for desktop version
MartinBelthle 9cfe01f
fix xpress presolve
MartinBelthle 885b087
prepare work for logs
MartinBelthle 1819e9b
continue work preparation
MartinBelthle 7dcd434
little refactoring
MartinBelthle 889014b
continue work
MartinBelthle 521b9b8
remove useless function
MartinBelthle e579ba5
use .log instead of .txt
MartinBelthle a1067ef
import output only if the simulation succeeds
MartinBelthle c3ea9f2
add std err file
MartinBelthle 4c6a741
add logs inside debug view
MartinBelthle c72bd08
see logs folder inside the front-end
MartinBelthle 92de6b9
put back the workflows
MartinBelthle bb88b69
fix test
MartinBelthle 549572b
fix test
MartinBelthle 54e4c8b
add little condition for stderr
MartinBelthle e569513
resolve comments by doing the same as slurm inside local
MartinBelthle 4483ca3
little refactoring
MartinBelthle 6098d99
fix test
MartinBelthle 93cb23a
add new folder inside resources directory
MartinBelthle ce7e305
merge with dev
MartinBelthle 7e371e7
Merge branch 'dev' into feat/allow-xpress-and-presolve-in-local
sylvlecl 47418a0
Merge branch 'dev' into feat/allow-xpress-and-presolve-in-local
sylvlecl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
17 changes: 0 additions & 17 deletions
17
antarest/study/storage/rawstudy/model/filesystem/root/logs.py
This file was deleted.
Oops, something went wrong.
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In slurm laucher we still call the import output when it has failed, we need to understand if it makes sense
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From my understanding, if the simulator fails, the output is not retrieved from calin, therefore the
_import_output
fails. But with the local launcher the output exists and therefore it can be retrieved. I think we should keep the code as it is, else i would have to touch code shared with the slurm partThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok. Indeed if we still wanted to import the output, we should have some kind of status to say that it's a "failed output".
I wonder if we should not also delete the import output in slurm implementation, to clarify the behaviour ?