Conversation
|
Coverage report for combustion/gnns/ use-case
Minimum allowed coverage is Generated by 🐒 cobertura-action against be0a45c |
leonicoletti
approved these changes
Apr 5, 2022
alxyok
reviewed
Apr 13, 2022
Contributor
alxyok
left a comment
There was a problem hiding this comment.
a few non-blocking remarks
| pyyaml==6.0 | ||
| randomname==0.1.5 | ||
| torch==1.9.0 | ||
| torch==1.11.0+cu113 |
Contributor
There was a problem hiding this comment.
we should really make sure the version is aligned with what is installed. containerizing everything and freezing this in a Dockerfile would be nice
Contributor
Author
There was a problem hiding this comment.
Yeah, that is the next step ;)
| (bool): True if cuda is available. | ||
| """ | ||
| try: | ||
| out = subprocess.run("nvidia-smi", stdout=subprocess.DEVNULL) |
Contributor
There was a problem hiding this comment.
is there not a cleaner way to perform this?
Contributor
Author
There was a problem hiding this comment.
There are maybe other ways to do this, but what do you mean by "cleaner" ?
rmslm
approved these changes
Apr 14, 2022
A669015
added a commit
that referenced
this pull request
Apr 15, 2022
* weather_forecast: upgrade torch and adapt nox sessions * combustion/gnns: upgrade torch and fix datamodule * combustion/unets: upgrade torch * ai4sim-ci-cd.yml: improve nox sessions verbosity and cuda support * weather_forecast: upgrade torch and adapt nox sessions * combustion/gnns: upgrade torch and fix datamodule * combustion/unets: upgrade torch * ai4sim-ci-cd.yml: improve nox sessions verbosity and cuda support * gnns: fix unsused import Co-authored-by: rmslm <76530303+rmslm@users.noreply.github.com>
A669015
added a commit
that referenced
this pull request
May 3, 2022
* combustion: fix flake8 isuues * combustion: adjust last issues * gnns: fix variable names * ai4sim-ci-cd.yml: perfer use nox lib instead of buggy action support * tools: make linting blocker * first implementation of inference GNN R2 to R3 * cli first implementation in lightning * gnns: integrate inferer in gnn use-case * notebooks: add a notebook for inference results * inferer.py: refactor inferer to be generalizable * Converted .md to .rst, Removed useless text, and Added details describing the UC * bugfix syntax * syntax bugfix * Linting-compliancy of combustion/unets (with temporarily? disabled docstring rules) (#21) * Fix bad conflict resolution in GNN (#22) * combustion: fix flake8 isuues * combustion: adjust last issues * gnns: fix variable names * ai4sim-ci-cd.yml: perfer use nox lib instead of buggy action support * tools: make linting blocker * nox_ref_file.py: make build failling is coverage pass under 80% * Upgrade torch to 1.11.0 (#19) * weather_forecast: upgrade torch and adapt nox sessions * combustion/gnns: upgrade torch and fix datamodule * combustion/unets: upgrade torch * ai4sim-ci-cd.yml: improve nox sessions verbosity and cuda support * weather_forecast: upgrade torch and adapt nox sessions * combustion/gnns: upgrade torch and fix datamodule * combustion/unets: upgrade torch * ai4sim-ci-cd.yml: improve nox sessions verbosity and cuda support * gnns: fix unsused import Co-authored-by: rmslm <76530303+rmslm@users.noreply.github.com> * gnns: add unit tests for inferer.py * inferer.py: fix wrong example path Co-authored-by: root <rami.salem@atos.net> Co-authored-by: alxyok <alxyok@naiama.com> Co-authored-by: Léo Nicoletti <leo.nicoletti@atos.net> Co-authored-by: rmslm <76530303+rmslm@users.noreply.github.com>
ai4sim-pr-app bot
pushed a commit
that referenced
this pull request
Mar 9, 2026
* patch GH merge * use the var for branch name everywhere
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR upgrades the torch version used to 1.11.0 and associated it the 11.3 cuda version by default in the requirements.
Additionally it: