-
Notifications
You must be signed in to change notification settings - Fork 9
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
Changes from round of JOSS review #428
Merged
Merged
Changes from 5 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
0066727
Changes from round of JOSS review:
jonahm-LANL 80c596f
Update doc/sphinx/src/getting-started.rst
Yurlungur 74e2646
update openmp reference
jonahm-LANL e87446d
Merge branch 'jmm/joss-comments' of github.com:lanl/singularity-eos i…
jonahm-LANL a1440fc
builddir to build
jonahm-LANL 1e88aaa
build -> builddir as easier to distinguish names. Remove the unit tes…
jonahm-LANL 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -9,16 +9,35 @@ At it's most basic, you can download and compile ``singularity-eos`` with: | |||||||||
|
||||||||||
git clone --recursive [email protected]:lanl/singularity-eos.git | ||||||||||
cd singularity-eos | ||||||||||
mkdir bin | ||||||||||
cd bin | ||||||||||
cmake -DSINGULARITY_FORCE_SUBMODULE_MODE=ON -DSINGULARITY_USE_FORTRAN=OFF .. | ||||||||||
make -j | ||||||||||
make install # optional: install into directory defined via CMAKE_INSTALL_PREFIX | ||||||||||
cmake -B builddir -S . -DSINGULARITY_FORCE_SUBMODULE_MODE=ON -DSINGULARITY_USE_FORTRAN=OFF -DSINGULARITY_BUILD_EXAMPLES=ON -DSINGULARITY_BUILD_TESTS=ON | ||||||||||
cmake --build build --parallel | ||||||||||
cmake --install build # optional: install into directory defined via CMAKE_INSTALL_PREFIX | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
|
||||||||||
This will download ``singularity-eos`` with no optional dependencies and | ||||||||||
compile the capabilities available in that form. For more details, see | ||||||||||
:ref:`our build page <building>`. | ||||||||||
|
||||||||||
You can also run unit tests by calling | ||||||||||
|
||||||||||
.. code-block:: | ||||||||||
|
||||||||||
make test | ||||||||||
|
||||||||||
in the ``build`` directory, which should produce output confirming that | ||||||||||
several tests pass. | ||||||||||
|
||||||||||
Once compiled, you can quickly check your build/install by going to | ||||||||||
``build/example`` and running ``./get_sound_speed_press``. You should be | ||||||||||
able to see the following output: | ||||||||||
|
||||||||||
.. code-block:: | ||||||||||
|
||||||||||
The final values are: | ||||||||||
rho = 0.987467 | ||||||||||
uu = 0.00987467 | ||||||||||
P = 0.0059248 | ||||||||||
cs = 0.0979796 | ||||||||||
|
||||||||||
If the library is in your include and lib paths (or you built it | ||||||||||
in-tree), you can include the ``eos`` part of the library with | ||||||||||
|
||||||||||
|
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
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.
I think that this
buildidir
should bebuild
? just like the ones on line 13 and 14. I saw there was a change in name and probably that one was forgotten.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.
Correct, my mistake!