-
Notifications
You must be signed in to change notification settings - Fork 0
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
Allow restart check to wait for files to write #12
Conversation
docs/index.rst
Outdated
make ats_environment | ||
|
||
|
||
These will attempt to install the required packages into the python distribution indicated via the `Python3_EXECUTABLE` cmake variable (also used by pygeosx). | ||
If any package dependencies are missing, then the install script will attempt to fetch them from the internet using pip. | ||
After installation, these packages will be available for import within the associated python distribution, and a set of console scripts will be available within the GEOSX build bin directory. |
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.
After installation, these packages will be available for import within the associated python distribution, and a set of console scripts will be available within the GEOSX build bin directory. | |
After installation, these packages will be available for import within the associated python distribution, and a set of console scripts will be available within the GEOS build bin directory. |
self.compareGroups( file, base_file ) | ||
|
||
else: | ||
self.output.write( f"\nRank {rank} Failed to load target and/or baseline files \n" ) |
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.
maybe it is useful to know which of the two failed.
self.output.write( f"\nRank {rank} Failed to load target and/or baseline files \n" ) | |
if ( file is None ): | |
self.output.write( f"\nRank {rank} Failed to load target files \n" ) | |
if ( base_file is None ): | |
self.output.write( f"\nRank {rank} Failed to load baseline files \n" ) |
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.
And I wonder if we should add the path info.
No description provided.