Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Public version of PolyChord: See polychord.co.uk for PolyChordPro

License

NotificationsYou must be signed in to change notification settings

PolyChord/PolyChordLite

Repository files navigation

Build StatusOpen-access paper

PolyChord v 1.22.1

Will Handley, Mike Hobson & Anthony Lasenby

wh260@mrao.cam.ac.uk

arXiv:1502.01856

arXiv:1506.00171

Latest version Released Jan 2024

PolyChord Licence

Users are required to accept the licence agreement given in LICENCEfile. PolyChord is free for academic usage

Users are also required to cite the PolyChord papers:

in their publications.

Python quickstart

For Python users in a hurry:

pip install git+https://github.com/PolyChord/PolyChordLite@masterwget https://raw.githubusercontent.com/PolyChord/PolyChordLite/master/quickstart.pypython quickstart.py

You should make sure that you have gfortran/gcc (or equivalent) fortran compilers installed.

You can then modify the file quickstart.py to your needs. If you have mpi compilers available, this version can be run in parallel with mpi.

If any of the above steps fail (this can in general happen for certain macOS versions), then try installing without pip:

git clone https://github.com/PolyChord/PolyChordLite.gitcd PolyChordLitepython setup.py install

or perhaps:

git clone https://github.com/PolyChord/PolyChordLite.gitcd PolyChordLitemakepip install.

our apologies -- the shifting sands that are macOS do not play well with the delicate dance of fortran, C and Python that is (py)PolyChordLite.

If you do not have sudo access/virtual environments/anaconda, then appending --user to the install command may be necessary.

Post Processing

We recommend the pip-installable toolanesthetic for post-processing your nested sampling runs. A plot gallery can be foundhere

pip install anesthetic

If anesthetic is already installed, then pypolychord.run() will return an anesthetic.NestedSamples object, which can be used directly for post-processing.

MPI Support

The code is MPI compatible with openMPI. To disable the MPI parallelization,set MPI=0 in ./Makefile, or compile with

make <target>  MPI=0

Additional Libraries

PolyChord requires no additional libraries to run in linear modeTo run with MPI it requires the openMPI library

Compilers

PolyChord compiles with both gfortran and intel compilers.

Compiler type is chosen in the Makefile with the COMPILER_TYPE flag;

setCOMPILER_TYPE = gnufor gfortran compilers (free)

setCOMPILER_TYPE = intelfor intel compilers (proprietary, much faster)

Mac OS troubleshooting guide

Users of thebrew package manager should reinstallgcc (which should pull ingfortran) andopen-mpi. If you do not reinstallgcc (or the equivalent intel compiler), your installation may fail to build with

ld: unknown options: -commons

If this error message persists after re-installation, please consider downgrading the XCode command line tools to an earlier version.

Running PolyChord

Examples

First, try a couple of quick examples:

  1. 20 dimensional Gaussian

Run the commands:

$  make gaussian$  ./bin/gaussian ini/gaussian.ini
  1. Rastrigin

Run the commands:

$ make rastrigin$ ./bin/rastrigin ini/rastrigin.ini

This runs the rastrigin 'bunch of grapes' loglikelihood.

In general, binary executables are stored in the directory ./bin, and ini files arestored in the directory ./ini.

You can create new likelihoods by modelling them on the ones inlikelihoods/examples, and triggering them with their own ini files

Alternatively you can take a more "MultiNest" like approach, and manuallygenerate the prior transformations. PolyChord's settings are then modified inthe driver files src/drivers.

Fortran likelihoods

You should place your likelihood code in the function loglikelihood and yourprior code in the function prior, contained in:

./likelihoods/fortran/likelihood.f90

Any setup required (such as reading in input files) should be conducted in thefunction setup_loglikelihood. In most cases, this will likely just be a callto your own pre-written library.

You should then alter the polychord run-time settings within the driver file:

./src/drivers/polychord_fortran.f90

Your code can be compiled and run with the commands:

$  make polychord_fortran$  ./bin/polychord_fortran

C++/C likelihoods

You should place your likelihood code in the function loglikelihood,contained in

./likelihoods/CC/CC_likelihood.cpp

Any setup required (such as reading in input files) should be conducted in thefunction setup_loglikelihood. In most cases, this will likely just be a callto your own pre-written library.

You should then alter the polychord run-time settings within the driver file:

./src/drivers/polychord_CC.cpp

or use the ini file version:

./likelihoods/CC_ini/CC_ini_likelihood.cpp./src/drivers/polychord_CC_ini.cpp

Your code can be compiled and run with the commands:

$  make polychord_CC$  ./bin/polychord_CC

or

$  make polychord_CC_ini$  ./bin/polychord_CC_ini ini/gaussian_CC.ini

If you have an additional suggestions to make the c++ wrapper more easy to use,please email Will (wh260@mrao.cam.ac.uk).

Python likelihoods (pypolychord)

Being python, this interface is the most self-explanatory.You can install direct from the git repository using:

pip install https://github.com/PolyChord/PolyChordLite/archive/master.zip

or you can install locally with the command:

git clone https://github.com/PolyChord/PolyChordLite.gitcd PolyChordLitepip install. --user

This has the advantage of using intel compilers if you have them (e.g. on a HPC machine). You may wish to consider installing pypolychord in a virtual environment <https://packaging.python.org/guides/installing-using-pip-and-virtual-environments>, in which case you don't need the --user argument.

Once installed, you can then import pypolychord from anywhere with the lines:

importpypolychord

and check that it's working by running:

$  python quickstart.py

or in MPI:

$  mpirun -np 4 python quickstart.py

If so, the rest of the interface is relatively painless. Follow the example inquickstart.py, and consult the docstring if you need help:

>>>importpypolychord>>>help(pypolychord.run)

There is also a demopython notebook.

To post-process nested sampling runs we recommend the pip-installable toolanesthetic. A plot gallery can be foundhere

Output files

PolyChord produces several output files depending on which settingsare chosen

[root].stats

Run time statistics

[root].resume

Files for resuming a stopped run. Semi-human readable.This is produced if settings%write_resume=.true.This is used if settings%read_resume=.true.

[root].txt

File containing weighted posterior samples. Compatable with the formatrequired by getdist package which is part of the CosmoMC package.Contains ndims+nderived+2 columns:

weight -2*loglike <params> <derived params>

Refer to the following website in order to download or get moreinformation about getdist:http://cosmologist.info/cosmomc/readme.html#Analysing

If settings%cluster_posteriors=.true. there are additional cluster files inclusters/[root]_<integer>.txt

[root]_equal_weights.txt

As above, but the posterior points are equally weighted. This isbetter for 'eyeballing' the posterior, and provides a natural ~4 foldcompression of the .txt file.

[root]_phys_live.txt

Live points in the physical space. This is produced ifsettings%write_phys_live=.true.This file contains ndims+nderived+1 columns, indicating the physicalparameters, derived parameters and the log-likelihood. This is usefulfor monitoring a run as it progresses.

[root]_dead.txt

Points that have been killed off. This is produced ifsettings%write_dead=.true.This file contains ndims+nderived+1 columns, indicating the loglikelihood,physical parameters, derived parameters and the log-likelihood. This is usefulfor monitoring a run as it progresses, and for performing alternativecalculations and checks on evidence and posterior computations

[root].paramnames

Parameter names file for compatibility with getdist

[root]phys_live-birth.txt & [root]dead-birth.txt

These can be used to reconstruct a full nested sampling run, as well assimulate dynamic nested sampling. The format & contents of these two filesare as follows: They have has ndims+nderived+2 columns. The firstndims+nderived columns are the ndim parameter values along with the nderivedadditional parameters that are being passed by the likelihood routine forPolyChord to save along with the ndims parameters. The ndims+nderived+1 columnis the log-likelihood value. The ndims+nderived+2 column is the log-likelihoodvalue that the point was born at. They are is identical to the[root]_phys_live.txt and [root]_dead.txt file, except for an additional columnincluding the birth contours

Visualization of PolyChord Output:

[root].txt file created by PolyChord is compatable with the formatrequired by getdist package which is part of the CosmoMC package.Refer to the following website in order to download or get moreinformation about getdist:http://getdist.readthedocs.org/en/latest/

Common Problems & FAQs:

Run time Issues

1 Output files ([root].txt & [root]_equal_weights.dat) files have very few (of order tens) points.

These files only become populated as the algorithm approaches the peak(s) of the posterior. Wait for the run to be closer to finishing.

2 MPI doesn't help

  • Currently, the MPI parallelisation will only increase speed for'slow' likelihoods, i.e. likelihoods where the slice sampling stepis the dominant computational cost (compared to the organisation oflive points and clustering steps).
  • Parallelisation is only effective up to ncores~O(nlive).

Compilation Issues

Most issues are usually one associated with an out-of-date MPI library orfortran compiler. Ideally you should be using:

  • gfortran 4.8 or ifort 14
  • openMPI 1.6.5 or Intel MPI 4.1

[8]ページ先頭

©2009-2025 Movatter.jp