-
Notifications
You must be signed in to change notification settings - Fork 69
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
Power spectrum responses for SSC #1134
base: master
Are you sure you want to change the base?
Conversation
Pull Request Test Coverage Report for Build 12132306089Details
💛 - Coveralls |
@RyoTerasawa can I check what the status of this PR is? |
I am waiting for someone to review the code. I haven't asked for a specific person yet, but maybe I should ask a member of the MCPCov group to review it. I am happy to explain the details if needed. I am also working on writing the unit test and benchmark test to be included in this PR. |
@RyoTerasawa @YueNan-c, maybe you want to also implement the DarkEmulator here: https://github.com/LSSTDESC/CCL/blob/master/pyccl/emulators/cosmicemu_pk.py. Are the unit tests and benchmark ready? |
@RyoTerasawa @carlosggarcia can I check what the status of this is? |
@carlosggarcia @damonge |
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.
Ok. I first round of comments. Some suggestions:
- Add unit tests per function/method declared to be sure they are doing what they should
- I would unify the
.npy
files in a single.npz
file. Also, it seems that you are only using the z=0 case, I'd be great if you can compare all redshift, since you have it. - Add References to the equations in your paper for later reference (and to make my life easier when reviewing the PR)
- @damonge, there are integrals and biases computed that I think they might be obtained from the current CCL implementation. Can you have a look? The are in
pkresponse.py
, where I pinged you, too.
In general, it looks good, though! Good work!
pyccl/pkresponse.py
Outdated
/ ng | ||
) | ||
|
||
bgE2 = ( |
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.
@damonge , can this be done with the current methods of the halo model?
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.
Same with the other integrals
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 so. @RyoTerasawa can you check:
Line 108 in 5273ca6
def _integrate_over_mf(self, array_2): |
and
Line 113 in 5273ca6
def _integrate_over_mbf(self, array_2): |
and
Line 118 in 5273ca6
def integrate_over_massfunc(self, func, cosmo, a): |
?
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 changed the pkresponse.py
, and now all the integrals of the mass function are using _integrate_over_mf
or _integrate_over_mbf
.
@carlosggarcia @RyoTerasawa can I check what the status of this PR is? |
I am currently working on addressing Carlos's comments. |
@carlosggarcia Thank you for the comments and suggestions.
|
@RyoTerasawa I responded to Carlos' comment about the integrals. If possible, it'd be good if CCL does all of these consistently. |
@damonge Thank you for the suggestion. I switched to the integral method of |
Merge branch 'master' into SSC
@carlosggarcia, I complete addressing these comments. Although the build failed at the unit test. |
Allowing for cross-correlations in HOD power spectrum. (#1224)
@carlosggarcia I believe this PR is ready for review. Whenever you have time, I would appreciate your feedback. Thank you! |
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.
A few more comment/questions.
I didn't have time to go through all the equation in pkresponse.py
but I guess that if the benchmark pass, they will be ok.
The most important comment is the one regarding the benchmarks. It seems to me that the threshold is to high (e.g. 60 sigma away of what you measure in the simulation)
benchmarks/test_pkresponse.py
Outdated
assert np.allclose( | ||
Pmm_resp_data[0, indx_mm], | ||
generated_Pmm_resp[0], | ||
atol=10 * Pmm_resp_err_data[0, indx_mm], |
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.
Aren't all the atol
a bit too big? this is like 10 sigma, right? And you have others with even larger numbers.
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 guess the error bars from the simulations are too strict, probably because we use the pair and fixed initial density method. Instead, I switched to rtol
.
The difference between the model and the simulations are typically few ten percents. Higher redshifts of Pgm, Pgg (especially Pgg) have worse accuracy due to the accuracy of darkemulator
itself, but they are still a factor of difference at most.
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.
Okay, make sense. Can you add a comment in the tests explaining this? Otherwise we will forget in a few months.
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 added above comments in the benchmarks/test_pkrespose.py
.
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.
All looks good to me. Can you merge the master branch into this branch to see if that solves the issue with the unit tests?
Once the unit test pass, I will approve.
I've left some questions for @damonge regarding the integrals.
nP = nth_mat * np.array(Pth) | ||
|
||
# Eq. A7 | ||
Pgm = integrate.romb(dprof_dlogM * nP, dx=dlogM, axis=0) / ng |
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 this could be done with current halo calculator, @damonge?
I've commented those that I think might use current CCL integrators
Pgg_2h_int = np.array(Pgg_2h_int) | ||
|
||
# Eq. A12 | ||
_Pgg_2h = integrate.romb( |
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 this one too? @damonge
G_prof = ( | ||
+2.0 | ||
/ 3.0 | ||
* integrate.romb( |
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 this too? @damonge
Thank you for the through review. Now this SSC branch is up to date with the master branch, and 33 commits ahead of the master branch. |
merge from master branch
In pyccl/pkresponse.py, I implemented the functions to calculate power spectrum responses to the super-survey modes which are responsible for super-sample covariance (SSC), based on arXiv:2310.13330.
We approximate the power spectrum growth response to the super-survey modes by its growth response to the Hubble parameter.
For the galaxy-matter and galaxy-auto power spectra, the halo statistics (halo-matter/halo-auto power spectrum, mass function) are calculated by DarkEmulator.