-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #88 from joezuntz/interactive-use to make CosmoSIS…
… 3.0 - Allow more configuration of the `run_cosmosis` and `run_postprocess` functions, for use from Jupyter or other interactive notebooks. - Add the `cosmosis-campaign` tool to manage suites of related runs. - Allow output in `astropy` table format in interactive mode. - Extensive changes to logging - we now exclusively use cosmosis.logs for anything that is printed during main sampling - - The `quiet` option is deprecated in favour of more fine-grained logging control. - Tidy up the output in general - Update the setup script to avoid the deprecated distutils. - Deal with various deprecation warnings - Modify the format of the tables output by the "statistics" postprocessor so they can be read in astropy. - Fix corner plots so you can put multiple chains on the same axes. - Allow using MPI pools with general communicator objects - should make it possible to run under MPI in jupyter eventually.
- Loading branch information
Showing
70 changed files
with
1,891 additions
and
1,004 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,3 +44,4 @@ install-record.txt | |
*.egg-info | ||
.DS_Store | ||
output/* | ||
cosmosis.code-workspace |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/env python3 | ||
import cosmosis.campaign | ||
args = cosmosis.campaign.parser.parse_args() | ||
cosmosis.campaign.main(args) |
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.