Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
bilbyfw_install [2022/08/19 07:28] theoastro |
bilbyfw_install [2022/09/12 15:32] (current) theoastro |
||
---|---|---|---|
Line 13: | Line 13: | ||
It will save you a great amount of pain to use a dedicated python [[https:// | It will save you a great amount of pain to use a dedicated python [[https:// | ||
conda create -n [YOUR_PBILBY_ENVIRONMENT] python=3.7 | conda create -n [YOUR_PBILBY_ENVIRONMENT] python=3.7 | ||
- | and hit '' | + | and hit '' |
conda activate [YOUR_PBILBY_ENVIRONMENT] | conda activate [YOUR_PBILBY_ENVIRONMENT] | ||
- | Python packages are distributed through sometimes conflicting [[https:// | + | Python packages are distributed through sometimes conflicting [[https:// |
conda config --add channels conda-forge | conda config --add channels conda-forge | ||
conda config --set channel_priority strict | conda config --set channel_priority strict | ||
Line 29: | Line 29: | ||
==== The Bilby Family ==== | ==== The Bilby Family ==== | ||
- | If you want to work with the '' | + | If you want to work with the '' |
conda install bilby | conda install bilby | ||
conda install bilby_pipe | conda install bilby_pipe | ||
Line 35: | Line 35: | ||
'' | '' | ||
- | If however, you want to include the possibility to sample over Equations of State, you need to install from source as this allows us to include dedicated patches (see below). To do so, (make and) go to a convenient destination directory ('' | + | If however, you want to include the possibility to sample over Equations of State, you need to install from source as this allows us to include dedicated patches (see below). To do so, (make and) go to a convenient destination directory ('' |
git clone https:// | git clone https:// | ||
git clone https:// | git clone https:// | ||
git clone https:// | git clone https:// | ||
- | This should create a folder each in your destination that contains | + | |
+ | ====EoS Patches==== | ||
+ | Patches to handle EoS are available | ||
+ | Copy it to the same directory as the bilby-family, | ||
cd bilby | cd bilby | ||
+ | git apply ../ | ||
pip install -r requirements.txt | pip install -r requirements.txt | ||
- | git checkout -b branch_1.1.4 1.1.4 | ||
pip install . | pip install . | ||
- | |||
cd ../ | cd ../ | ||
- | git checkout -b branch_1.0.4 1.0.4 | + | git apply ../ |
pip install . | pip install . | ||
- | |||
cd ../ | cd ../ | ||
- | git checkout -b branch_1.0.1 1.0.1 | + | git apply ../ |
pip install . | pip install . | ||
- | |||
- | ====EoS Patches==== | ||
- | Patches to handle EoS are available in {{: | ||
- | Copy it to the same directory as the bilby-family, | ||
- | cd bilby | ||
- | mv ../ | ||
- | git apply *.patch | ||
- | |||
- | cd ../ | ||
- | mv ../ | ||
- | git apply *.patch | ||
Your computer should now be ready to handle Bayesian Inference problems in a gravitational wave context. | Your computer should now be ready to handle Bayesian Inference problems in a gravitational wave context. | ||
Line 78: | Line 68: | ||
You may also need to update '' | You may also need to update '' | ||
- | On a cluster, you may expect | + | Essentially, |
+ | This file specifies the routines to be installed. The patches now serve to change some of the files '' | ||
+ | error: | ||
+ | You have two options two fix this: | ||
+ | A) // | ||
+ | cd [YOUR_DESTINATION]/ | ||
+ | git checkout -b branch_1.2.1 1.2.1 | ||
+ | |||
+ | cd [YOUR_DESTINATION]/ | ||
+ | git checkout -b branch_1.0.7 1.0.7 | ||
+ | |||
+ | cd [YOUR_DESTINATION]/ | ||
+ | git checkout -b branch_1.1.0 1.1.0 | ||
+ | You can then apply the patches as described above. | ||
+ | |||
+ | B) //Fix the fix.// | ||
+ | If you feel comfortable doing so, you might also fix the patches. This will generally be advantageous as newer programme versions tend to be more efficient, but the patches might also cause some fringe behaviour. For safety, you might want to first do A in a dedicated '' | ||
+ | |||
+ | diff --git a/ | ||
+ | [...] | ||
+ | --- a/ | ||
+ | +++ b/ | ||
+ | @@ -684,4 +686,6 @@ with MPIPool( | ||
+ | |||
+ | + logger.info(f" | ||
+ | + result.save_posterior_samples() | ||
+ | | ||
+ | | ||
+ | | ||
+ | |||
+ | Read this as: The content of file a in the 4 lines starting at line 684 and file b in the 6lines starting at line 686 should be | ||
+ | * exlusive to file b if the line begins with a '' | ||
+ | * exclusive to file a if the line begins with a '' | ||
+ | * shared if the line begins with a blank. | ||
+ | Since file a and b are identical, this will effectively result in the addition of the two lines indicated by the ' | ||
+ | So probably | ||
+ | As mentioned, though, this is subject to the extend of changes that have been made to the packages. If you find that this context is no longer present or that the patch causes other errors, you might prefer to ressort to option A. | ||
+ |
Last modified: le 2022/08/19 07:28