diffsky 0.3.1__tar.gz → 0.3.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {diffsky-0.3.1 → diffsky-0.3.2}/.github/workflows/linting.yaml +1 -1
- {diffsky-0.3.1 → diffsky-0.3.2}/.github/workflows/mock_generation_test.yaml +23 -14
- {diffsky-0.3.1 → diffsky-0.3.2}/.github/workflows/monthly-warning-test.yaml +1 -1
- {diffsky-0.3.1 → diffsky-0.3.2}/.github/workflows/test_latest_releases.yaml +1 -1
- {diffsky-0.3.1 → diffsky-0.3.2}/.github/workflows/test_main_branch.yaml +1 -1
- {diffsky-0.3.1 → diffsky-0.3.2}/.github/workflows/test_new_diffstar.yaml +1 -1
- {diffsky-0.3.1 → diffsky-0.3.2}/.github/workflows/tests_cron.yaml +1 -1
- {diffsky-0.3.1 → diffsky-0.3.2}/.gitignore +2 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/CHANGES.rst +8 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/PKG-INFO +1 -1
- diffsky-0.3.2/diffsky/_version.py +1 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/data_validation/validate_lc_mock.py +25 -19
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/lc_mock_production.py +82 -36
- diffsky-0.3.2/diffsky/data_loaders/hacc_utils/lc_mock_repro.py +537 -0
- diffsky-0.3.2/diffsky/data_loaders/hacc_utils/load_lc_mock.py +285 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/metadata_sfh_mock.py +24 -141
- diffsky-0.3.1/diffsky/data_loaders/hacc_utils/tests/test_lc_mock_production.py → diffsky-0.3.2/diffsky/data_loaders/hacc_utils/tests/test_lc_mock_repro.py +44 -38
- diffsky-0.3.2/diffsky/data_loaders/hacc_utils/tests/test_load_lc_mock.py +27 -0
- diffsky-0.3.2/diffsky/data_loaders/hacc_utils/tests/test_metadata_sfh_mock.py +7 -0
- diffsky-0.3.2/diffsky/experimental/dbk_from_mock2.py +231 -0
- diffsky-0.3.2/diffsky/experimental/kernels/dbk_kernels.py +116 -0
- diffsky-0.3.2/diffsky/experimental/kernels/mc_phot_kernels.py +530 -0
- diffsky-0.3.2/diffsky/experimental/kernels/ssp_weight_kernels.py +496 -0
- diffsky-0.3.2/diffsky/experimental/kernels/ssp_weight_kernels_repro.py +385 -0
- diffsky-0.3.2/diffsky/experimental/kernels/tests/test_mc_phot_kernels.py +174 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/lc_phot_kern.py +1 -10
- diffsky-0.3.2/diffsky/experimental/lc_phot_kern_repro.py +499 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/mc_diffsky_seds.py +3 -3
- diffsky-0.3.2/diffsky/experimental/mc_diffstarpop_wrappers.py +160 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/mc_lightcone_halos.py +71 -3
- diffsky-0.3.2/diffsky/experimental/mc_phot.py +274 -0
- diffsky-0.3.2/diffsky/experimental/mc_phot_repro.py +241 -0
- diffsky-0.3.2/diffsky/experimental/tests/test_dbk_from_mock2.py +263 -0
- diffsky-0.3.2/diffsky/experimental/tests/test_lc_phot_kern_repro.py +201 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/tests/test_mc_diffsky_seds.py +7 -7
- diffsky-0.3.2/diffsky/experimental/tests/test_mc_diffstarpop_wrappers.py +60 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/tests/test_mc_lightcone_halos.py +45 -0
- diffsky-0.3.2/diffsky/experimental/tests/test_mc_phot.py +169 -0
- diffsky-0.3.2/diffsky/experimental/tests/test_mc_phot_repro.py +129 -0
- diffsky-0.3.2/diffsky/ssp_err_model2/defaults.py +237 -0
- diffsky-0.3.2/diffsky/ssp_err_model2/ssp_err_model.py +316 -0
- diffsky-0.3.2/diffsky/ssp_err_model2/tests/test_ssp_err_model.py +171 -0
- diffsky-0.3.2/diffsky/tests/testing_data/__init__.py +0 -0
- diffsky-0.3.2/diffsky/utils/tests/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky.egg-info/PKG-INFO +1 -1
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky.egg-info/SOURCES.txt +28 -14
- {diffsky-0.3.1 → diffsky-0.3.2}/docs/source/demo_diffsky_lightcone.ipynb +153 -33
- diffsky-0.3.2/docs/source/demo_diffsky_recompute_from_mock.ipynb +303 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/docs/source/demos.rst +1 -0
- diffsky-0.3.1/scripts/LJ_LC_MOCKS/make_dbk_sed_lc_mock_lj.py → diffsky-0.3.2/scripts/LJ_LC_MOCKS/make_ou26_mock.py +71 -46
- diffsky-0.3.2/scripts/__init__.py +0 -0
- diffsky-0.3.2/scripts/tests/__init__.py +0 -0
- diffsky-0.3.1/diffsky/_version.py +0 -1
- diffsky-0.3.1/diffsky/data_loaders/hacc_utils/load_lc_mock.py +0 -39
- diffsky-0.3.1/diffsky/experimental/dbk_from_mock.py +0 -278
- diffsky-0.3.1/diffsky/experimental/mc_diffsky_disk_bulge_knot_seds.py +0 -943
- diffsky-0.3.1/diffsky/experimental/mc_diffsky_disk_bulge_seds.py +0 -922
- diffsky-0.3.1/diffsky/experimental/mc_diffsky_phot.py +0 -548
- diffsky-0.3.1/diffsky/experimental/ssp_err_pop.py +0 -146
- diffsky-0.3.1/diffsky/experimental/tests/test_dbk_from_mock.py +0 -133
- diffsky-0.3.1/diffsky/experimental/tests/test_mc_diffsky_disk_bulge_knot_seds.py +0 -149
- diffsky-0.3.1/diffsky/experimental/tests/test_mc_diffsky_phot.py +0 -61
- diffsky-0.3.1/diffsky/experimental/tests/test_ssp_err_pop.py +0 -95
- diffsky-0.3.1/scripts/LJ_LC_MOCKS/make_sed_lc_mock_lj.py +0 -296
- diffsky-0.3.1/scripts/LJ_LC_MOCKS/make_sfh_lc_mock_lj.py +0 -182
- diffsky-0.3.1/scripts/tests/test_make_sfh_lj_mock.py +0 -5
- {diffsky-0.3.1 → diffsky-0.3.2}/.coveragerc +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/.git_archival.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/.gitattributes +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/.github/dependabot.yml +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/.readthedocs.yml +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/LICENSE.rst +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/README.rst +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/diagnostics/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/diagnostics/plot_fburstpop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/diagnostics/plot_tburstpop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/diagnostics/tests/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/diagnostics/tests/test_plot_fburstpop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/diagnostics/tests/test_plot_tburstpop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/diffburstpop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/diffqburstpop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/diffqburstpop_mono.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/diffqburstpop_mono_noise.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/fburstpop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/fburstpop_mono.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/freqburst.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/freqburst_mono.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/tburstpop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/tests/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/tests/test_diffburstpop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/tests/test_diffqburstpop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/tests/test_diffqburstpop_mono.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/tests/test_diffqburstpop_mono_noise.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/tests/test_fburstpop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/tests/test_fburstpop_mono.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/tests/test_freqburst.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/tests/test_freqburst_mono.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/burstpop/tests/test_tburstpop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/cosmos_utils/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/cosmos_utils/cosmos_mstar_model.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/cosmos_utils/tests/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/cosmos_utils/tests/test_cosmos_mstar_model.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/cosmos20_loader.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/data/DiscoveryLCDM/cosmo.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/data/DiscoveryLCDM/cosmotools_steps.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/data/DiscoveryLCDM/cosmotools_steps_a.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/data/DiscoveryW0WA/cosmo.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/data/DiscoveryW0WA/cosmotools_steps.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/data/DiscoveryW0WA/cosmotools_steps_a.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/data/LastJourney/cosmo.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/data/LastJourney/cosmotools_steps.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/data/LastJourney/cosmotools_steps_a.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/data/LastJourney/lc_cores-decomposition.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/data_validation/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/data_validation/tests/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/data_validation/tests/test_validate_lc_cores.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/data_validation/tests/test_validate_lc_mock.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/data_validation/validate_lc_cores.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/defaults.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/hacc_core_utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/haccsims.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/lightcone_utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/load_hacc_cores.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/load_lc_cf.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/load_lc_cf_synthetic.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/tests/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/tests/test_defaults.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/tests/test_hacc_core_utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/tests/test_haccsims.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/tests/test_lightcone_utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/tests/test_load_hacc_cores.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/tests/test_load_lc_cf.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/tests/testing_data/lc_cores-decomposition.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/tests/testing_data/phi_haccytrees_tdata.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/tests/testing_data/redshift_haccytrees_tdata.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/tests/testing_data/theta_haccytrees_tdata.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/tests/testing_data/x_haccytrees_tdata.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/tests/testing_data/y_haccytrees_tdata.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/tests/testing_data/z_haccytrees_tdata.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/io_utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/mock_utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/mpi_utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/tests/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/tests/test_cosmos_loader.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/tests/test_imports.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/tests/test_io_utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/tests/test_mock_utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/tests/test_mpi_utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/tests/testing_data/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/tests/testing_data/cosmos20_shasum.dat +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/um_binary_loader.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/diagnostics/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/diagnostics/plot_delta_mag_burstiness.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/diagnostics/plot_diffstar_fq.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/diagnostics/tests/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/diagnostics/tests/test_plot_delta_mag_burstiness.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/diagnostics/tests/test_plot_diffstar_fq.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/diagnostics/utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/diffndhist.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/avpop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/avpop_flex.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/avpop_mono.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/deltapop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/diagnostics/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/diagnostics/plot_avpop_flex.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/diagnostics/plot_funopop_simple.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/diagnostics/tests/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/diagnostics/tests/test_plot_avpop_flex.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/diagnostics/tests/test_plot_funopop_simple.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/funopop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/funopop_simple.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/funopop_ssfr.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/sbl18_dust.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/sbl18_dust_kernels.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/sbl18_dustpop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/tests/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/tests/test_avpop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/tests/test_avpop_flex.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/tests/test_avpop_mono.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/tests/test_deltapop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/tests/test_funopop_model.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/tests/test_funopop_simple.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/tests/test_funopop_ssfr.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/tests/test_sbl18_dustpop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/tests/test_tw_dust_kernels.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/tests/test_tw_dustpop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/tests/test_tw_dustpop_mono.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/tests/test_tw_dustpop_mono_noise.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/tests/test_tw_dustpop_new.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/tw_dust.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/tw_dust_kernels.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/tw_dustpop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/tw_dustpop_mono.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/tw_dustpop_mono_noise.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/dustpop/tw_dustpop_new.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/ellipsoidal_shapes/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/ellipsoidal_shapes/bulge_opt.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/ellipsoidal_shapes/bulge_shapes.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/ellipsoidal_shapes/disk_opt.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/ellipsoidal_shapes/disk_shapes.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/ellipsoidal_shapes/ellipse_proj_kernels.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/ellipsoidal_shapes/pdf_model_utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/ellipsoidal_shapes/tests/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/ellipsoidal_shapes/tests/test_bulge_opt.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/ellipsoidal_shapes/tests/test_bulge_shapes.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/ellipsoidal_shapes/tests/test_disk_opt.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/ellipsoidal_shapes/tests/test_disk_shapes.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/ellipsoidal_shapes/tests/test_ellipse_proj_kernels.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/ellipsoidal_shapes/tests/test_pdf_model_utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/ellipsoidal_shapes/tests/testing_data/ellipsoid_b_over_a_pdf_rodriguez_padilla_2013.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/ellipsoidal_shapes/tests/testing_data/spiral_b_over_a_pdf_rodriguez_padilla_2013.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/black_hole_modeling/README.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/black_hole_modeling/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/black_hole_modeling/black_hole_accretion_rate.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/black_hole_modeling/black_hole_mass.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/black_hole_modeling/tests/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/black_hole_modeling/tests/test_black_hole_accretion_rate.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/black_hole_modeling/tests/test_black_hole_mass.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/black_hole_modeling/tests/test_utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/black_hole_modeling/utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/diagnostics/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/diagnostics/check_smhm.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/diagnostics/tests/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/diagnostics/tests/test_check_smhm.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/disk_bulge_modeling/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/disk_bulge_modeling/disk_bulge_kernels.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/disk_bulge_modeling/disk_knots.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/disk_bulge_modeling/generate_bulge_disk_sample.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/disk_bulge_modeling/mc_disk_bulge.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/disk_bulge_modeling/tests/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/disk_bulge_modeling/tests/test_disk_bulge.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/disk_bulge_modeling/tests/test_disk_knots.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/disk_bulge_modeling/tests/test_generate_bulge_disk_sample.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/disk_bulge_modeling/tests/test_mc_disk_bulge.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/dspspop/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/dspspop/boris_dust.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/dspspop/burstshapepop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/dspspop/dust_deltapop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/dspspop/dustpop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/dspspop/lgavpop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/dspspop/lgfburstpop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/dspspop/nagaraj22_dust.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/dspspop/photpop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/dspspop/tests/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/dspspop/tests/test_attavpop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/dspspop/tests/test_boris_dust.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/dspspop/tests/test_burstshapepop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/dspspop/tests/test_dustdeltapop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/dspspop/tests/test_lgfburstpop.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/dspspop/tests/test_photpop.py +0 -0
- {diffsky-0.3.1/diffsky/experimental/sfh_model_calibrations → diffsky-0.3.2/diffsky/experimental/kernels}/__init__.py +0 -0
- {diffsky-0.3.1/diffsky/experimental/sfh_model_calibrations → diffsky-0.3.2/diffsky/experimental/kernels}/tests/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/lc_utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/phot_utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/photometry_interpolation.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/precompute_ssp_phot.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/scatter.py +0 -0
- {diffsky-0.3.1/diffsky/experimental/size_modeling → diffsky-0.3.2/diffsky/experimental/sfh_model_calibrations}/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/sfh_model_calibrations/data/u_params_best_1015_galacticus_in_plus_ex_situ.npy +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/sfh_model_calibrations/data/u_params_best_1015_smdpl_dr1.npy +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/sfh_model_calibrations/data/u_params_best_1015_tng.npy +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/sfh_model_calibrations/load_diffsky_sfh_model_calibrations.py +0 -0
- {diffsky-0.3.1/diffsky/experimental/size_modeling → diffsky-0.3.2/diffsky/experimental/sfh_model_calibrations}/tests/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/sfh_model_calibrations/tests/test_load_diffsky_sfh_model_calibrations.py +0 -0
- {diffsky-0.3.1/diffsky/experimental/tests → diffsky-0.3.2/diffsky/experimental/size_modeling}/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/size_modeling/disk_bulge_sizes.py +0 -0
- {diffsky-0.3.1/diffsky/fake_sats → diffsky-0.3.2/diffsky/experimental/size_modeling/tests}/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/size_modeling/tests/test_disk_bulge_sizes.py +0 -0
- {diffsky-0.3.1/diffsky/fake_sats → diffsky-0.3.2/diffsky/experimental}/tests/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/tests/test_lc_phot_kern.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/tests/test_lc_utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/tests/test_photometry_interpolation.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/tests/test_precompute_ssp_phot.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/tests/test_scatter.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/tests/test_sobol_lightcone.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/experimental/tests/test_top_level_imports.py +0 -0
- {diffsky-0.3.1/diffsky/mass_functions/fitting_utils → diffsky-0.3.2/diffsky/fake_sats}/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/fake_sats/ellipsoidal_nfw_phase_space.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/fake_sats/ellipsoidal_velocities.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/fake_sats/halo_boundary_functions.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/fake_sats/nfw_config_space.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/fake_sats/rotations3d.py +0 -0
- {diffsky-0.3.1/diffsky/mass_functions/fitting_utils/calibrations → diffsky-0.3.2/diffsky/fake_sats/tests}/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/fake_sats/tests/test_ellipsoidal_nfw_phase_space.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/fake_sats/tests/test_halo_boundary_functions.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/fake_sats/tests/test_mc_ellipticial_velocities.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/fake_sats/tests/test_nfw_config_space.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/fake_sats/tests/test_rotations3d.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/fake_sats/tests/testing_data/halo_mass_ht_test.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/fake_sats/tests/testing_data/halo_radius_200c_ht_test.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/fake_sats/tests/testing_data/redshift_ht_test.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/fake_sats/vector_utilities.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/ccshmf_model.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/fitting_utils/README.rst +0 -0
- {diffsky-0.3.1/diffsky/mass_functions/fitting_utils/calibrations/tests → diffsky-0.3.2/diffsky/mass_functions/fitting_utils}/__init__.py +0 -0
- {diffsky-0.3.1/diffsky/mass_functions/fitting_utils/diagnostics → diffsky-0.3.2/diffsky/mass_functions/fitting_utils/calibrations}/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/fitting_utils/calibrations/hacc_core_shmf_params.py +0 -0
- {diffsky-0.3.1/diffsky/mass_functions/fitting_utils/diagnostics → diffsky-0.3.2/diffsky/mass_functions/fitting_utils/calibrations}/tests/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/fitting_utils/calibrations/tests/test_hacc_core_shmf_params.py +0 -0
- {diffsky-0.3.1/diffsky/mass_functions/fitting_utils/tests → diffsky-0.3.2/diffsky/mass_functions/fitting_utils/diagnostics}/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/fitting_utils/diagnostics/hmf_fit_diagnostics.py +0 -0
- {diffsky-0.3.1/diffsky/mass_functions/hmf_calibrations → diffsky-0.3.2/diffsky/mass_functions/fitting_utils/diagnostics}/tests/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/fitting_utils/diagnostics/tests/test_hmf_fit_diagnostics.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/fitting_utils/fit_ccshmf.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/fitting_utils/fit_ccshmf_kernels.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/fitting_utils/fit_flat_hmf_model.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/fitting_utils/fit_halobias_model.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/fitting_utils/fit_halobias_singlez_model.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/fitting_utils/fit_hmf_kernels.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/fitting_utils/fit_hmf_model.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/fitting_utils/fitting_helpers.py +0 -0
- {diffsky-0.3.1/diffsky/mass_functions/io_utils → diffsky-0.3.2/diffsky/mass_functions/fitting_utils/tests}/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/fitting_utils/tests/test_fit_ccshmf.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/fitting_utils/tests/test_fit_ccshmf_kernels.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/fitting_utils/tests/test_fit_flat_hmf_model.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/fitting_utils/tests/test_fit_halobias_model.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/fitting_utils/tests/test_fit_halobias_model_singlez.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/fitting_utils/tests/test_fit_hmf_kernels.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/fitting_utils/tests/test_fit_hmf_model.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/flat_hmf_model.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/halobias_model.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/halobias_singlez_model.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/disc_lcdm_hmf_params.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/disc_lcdm_hmf_params_all.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/hmf_param_reader.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/lj_hmf_params.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/lj_hmf_params_all.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/smdpl_hmf.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/smdpl_hmf_fitting_helpers.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/smdpl_hmf_subs.py +0 -0
- {diffsky-0.3.1/diffsky/mass_functions/kernels → diffsky-0.3.2/diffsky/mass_functions/hmf_calibrations/tests}/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/tests/test_imports.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/tests/test_lj_hmf.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/tests/test_smdpl_hmf.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/disc_lcdm_hmf_cuml_density_all.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/disc_lcdm_hmf_cuml_density_cens.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/disc_lcdm_hmf_logmp_bins.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/disc_lcdm_hmf_redshift_bins.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/lj_hmf_cuml_density_all.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/lj_hmf_cuml_density_cens.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/lj_hmf_logmp_bins.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/lj_hmf_redshift_bins.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/sfr_catalog_0.219000.subhalos.lgcuml_density.npy +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/sfr_catalog_0.219000.subhalos.logmp_bins.npy +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/sfr_catalog_0.460000.hosthalos.lgcuml_density.npy +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/sfr_catalog_0.460000.hosthalos.logmp_bins.npy +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/sfr_catalog_0.460000.subhalos.lgcuml_density.npy +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/sfr_catalog_0.460000.subhalos.logmp_bins.npy +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/sfr_catalog_1.000000.hosthalos.lgcuml_density.npy +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/sfr_catalog_1.000000.hosthalos.logmp_bins.npy +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/sfr_catalog_1.000000.subhalos.lgcuml_density.npy +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/sfr_catalog_1.000000.subhalos.logmp_bins.npy +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/hmf_model.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/io_utils/README.txt +0 -0
- {diffsky-0.3.1/diffsky/mass_functions/kernels/tests → diffsky-0.3.2/diffsky/mass_functions/io_utils}/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/io_utils/loader.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/io_utils/smdpl_helpers.py +0 -0
- {diffsky-0.3.1/diffsky/mass_functions/smhm_kernels → diffsky-0.3.2/diffsky/mass_functions/kernels}/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/kernels/ccshmf_kernels.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/kernels/hmf_kernels.py +0 -0
- {diffsky-0.3.1/diffsky/mass_functions/smhm_kernels → diffsky-0.3.2/diffsky/mass_functions/kernels}/tests/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/kernels/tests/test_ccshmf_kernels.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/kernels/tests/test_hmf_kernels.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/mc_diffmah_tpeak.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/mc_hosts.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/mc_subs.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/mc_tinfall.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/measure_ccshmf.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/measure_hmf.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/scripts/discovery_lcdm_calibration/fit_hmf_disc_lcdm.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/scripts/discovery_lcdm_calibration/measure_hmf_target_data_hacc.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/scripts/discovery_lcdm_calibration/run_hmf_tabulation_disc_lcdm.sh +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/scripts/last_journey_calibration/fit_hmf_lj.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/scripts/last_journey_calibration/measure_hmf_target_data_hacc.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/scripts/smdpl_calibration/fit_smdpl_hmf_script.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/scripts/smdpl_calibration/measure_smdpl_hmf_script.py +0 -0
- {diffsky-0.3.1/diffsky/mass_functions/tests → diffsky-0.3.2/diffsky/mass_functions/smhm_kernels}/__init__.py +0 -0
- {diffsky-0.3.1/diffsky/mass_functions/tests/testing_data → diffsky-0.3.2/diffsky/mass_functions/smhm_kernels/tests}/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/smhm_kernels/tests/test_threeroll_smhm.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/smhm_kernels/threeroll_kernels.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/smhm_kernels/threeroll_smhm.py +0 -0
- {diffsky-0.3.1/diffsky/mass_functions/upweighting → diffsky-0.3.2/diffsky/mass_functions/tests}/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/tests/test_ccshmf.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/tests/test_flat_hmf_model.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/tests/test_halobias_model.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/tests/test_halobias_singlez_model.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/tests/test_hmf_model.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/tests/test_mc_diffmah_tpeak.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/tests/test_mc_hosts.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/tests/test_mc_subs.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/tests/test_mc_tinfall.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/tests/test_measure_hmf.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/tests/testing_data/README.txt +0 -0
- {diffsky-0.3.1/diffsky/mass_functions/upweighting/tests → diffsky-0.3.2/diffsky/mass_functions/tests/testing_data}/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/tests/testing_data/smdpl_cshmf_cuml_redshift_0.00_lgmhost_12.32.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/tests/testing_data/smdpl_cshmf_cuml_redshift_0.00_lgmhost_13.00.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/tests/testing_data/smdpl_cshmf_cuml_redshift_0.00_lgmhost_13.55.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/tests/testing_data/smdpl_cshmf_cuml_redshift_0.00_lgmhost_14.08.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/tests/testing_data/smdpl_cshmf_cuml_redshift_1.00_lgmhost_12.31.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/tests/testing_data/smdpl_cshmf_cuml_redshift_1.00_lgmhost_12.99.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/tests/testing_data/smdpl_cshmf_cuml_redshift_1.00_lgmhost_13.51.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/tests/testing_data/smdpl_cshmf_cuml_redshift_1.00_lgmhost_14.05.txt +0 -0
- {diffsky-0.3.1/diffsky/merging → diffsky-0.3.2/diffsky/mass_functions/upweighting}/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/upweighting/namedtuple_cat_utils.py +0 -0
- {diffsky-0.3.1/diffsky/merging/diagnostics → diffsky-0.3.2/diffsky/mass_functions/upweighting/tests}/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/upweighting/tests/test_mc_gen_upweighting.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/upweighting/upweighting.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mass_functions/utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/mc_diffsky.py +0 -0
- {diffsky-0.3.1/diffsky/merging/diagnostics/tests → diffsky-0.3.2/diffsky/merging}/__init__.py +0 -0
- {diffsky-0.3.1/diffsky/merging/tests → diffsky-0.3.2/diffsky/merging/diagnostics}/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/merging/diagnostics/plot_pmerge_vs_time.py +0 -0
- {diffsky-0.3.1/diffsky/param_utils → diffsky-0.3.2/diffsky/merging/diagnostics/tests}/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/merging/diagnostics/tests/test_plot_pmerge_vs_time.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/merging/fitmerge_multi_redshift.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/merging/merging_model.py +0 -0
- {diffsky-0.3.1/diffsky/param_utils → diffsky-0.3.2/diffsky/merging}/tests/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/merging/tests/test_fitmerge_multi_redshift.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/merging/tests/test_merging_model.py +0 -0
- {diffsky-0.3.1/diffsky/ssp_err_model → diffsky-0.3.2/diffsky/param_utils}/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/param_utils/diffsky_param_wrapper.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/param_utils/spspop_param_utils.py +0 -0
- {diffsky-0.3.1/diffsky/ssp_err_model → diffsky-0.3.2/diffsky/param_utils}/tests/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/param_utils/tests/test_diffsky_param_wrapper.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/param_utils/tests/test_spspop_param_utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/phot_utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/sbl18_photgrad.py +0 -0
- {diffsky-0.3.1/diffsky/sumstats → diffsky-0.3.2/diffsky/ssp_err_model}/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/ssp_err_model/ssp_err_model.py +0 -0
- {diffsky-0.3.1/diffsky/sumstats → diffsky-0.3.2/diffsky/ssp_err_model}/tests/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/ssp_err_model/tests/test_ssp_err_model.py +0 -0
- {diffsky-0.3.1/diffsky/systematics → diffsky-0.3.2/diffsky/ssp_err_model2}/__init__.py +0 -0
- {diffsky-0.3.1/diffsky/systematics → diffsky-0.3.2/diffsky/ssp_err_model2}/tests/__init__.py +0 -0
- {diffsky-0.3.1/diffsky/tests → diffsky-0.3.2/diffsky/sumstats}/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/sumstats/diffndhist.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/sumstats/smhm.py +0 -0
- {diffsky-0.3.1/diffsky/tests/testing_data → diffsky-0.3.2/diffsky/sumstats/tests}/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/sumstats/tests/test_smhm.py +0 -0
- {diffsky-0.3.1/diffsky/utils/tests → diffsky-0.3.2/diffsky/systematics}/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/systematics/ssp_errors.py +0 -0
- {diffsky-0.3.1/scripts → diffsky-0.3.2/diffsky/systematics/tests}/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/systematics/tests/test_ssp_errors.py +0 -0
- {diffsky-0.3.1/scripts → diffsky-0.3.2/diffsky}/tests/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/tests/test_dependencies.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/tests/test_diffndhist.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/tests/test_diffsky_setup.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/tests/test_imports.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/tests/test_mc_diffsky.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/tests/test_phot_utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/tests/test_sbl18_photgrad.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/tests/test_tw_photgrad.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/tw_photgrad.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/utils/__init__.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/utils/crossmatch_utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/utils/sfh_utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/utils/tests/test_crossmatch_utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/utils/tests/test_sfh_utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/utils/tests/test_tw_utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/utils/tests/test_utility_funcs.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/utils/tw_utils.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky/utils/utility_funcs.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky.egg-info/dependency_links.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky.egg-info/requires.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/diffsky.egg-info/top_level.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/docs/Makefile +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/docs/make.bat +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/docs/source/citation.rst +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/docs/source/conf.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/docs/source/demo_diffmahpop_lightcone.ipynb +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/docs/source/demo_diffmahpop_t_peak.ipynb +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/docs/source/index.rst +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/docs/source/installation.rst +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/docs/source/rtd_environment.yaml +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/docs/source/validate_mc_lightcones.ipynb +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/pyproject.toml +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/requirements.txt +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/scripts/LJ_CROSSX/bebop_jobs.sh +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/scripts/LJ_CROSSX/generate_lj_cf_crossmatch_jobs.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/scripts/LJ_CROSSX/inspect_lc_cf_crossx_job_logs.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/scripts/LJ_CROSSX/inspect_lc_crossx_data.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/scripts/LJ_CROSSX/lc_cf_crossmatch_script.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/scripts/LJ_CROSSX/run_lc_cf_crossmatch_base.sh +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/scripts/LJ_CROSSX/run_tabulate_coreforest_overlap.sh +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/scripts/LJ_CROSSX/tabulate_coreforest_overlap.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/scripts/LJ_LC_MOCKS/generate_sed_mock_jobs.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/scripts/LJ_LC_MOCKS/generate_sfh_mock_jobs.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/scripts/LJ_LC_MOCKS/inspect_lc_mock.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/scripts/LJ_LC_MOCKS/inspect_sed_mock_job_logs.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/scripts/LJ_LC_MOCKS/run_sed_mocks.sh +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/scripts/LJ_SNAP_MOCKS/make_sfh_lj_snapshot_mock.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/scripts/tests/test_inspect_lightcone_mock.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/scripts/tests/test_tabulate_coreforest_overlap.py +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/setup.cfg +0 -0
- {diffsky-0.3.1 → diffsky-0.3.2}/setup.py +0 -0
|
@@ -12,18 +12,26 @@ on:
|
|
|
12
12
|
|
|
13
13
|
jobs:
|
|
14
14
|
mock-generation:
|
|
15
|
-
name: python
|
|
15
|
+
name: python make_ou26_mock.py -synthetic_cores 1
|
|
16
16
|
runs-on: "ubuntu-latest"
|
|
17
17
|
|
|
18
18
|
steps:
|
|
19
|
-
-
|
|
19
|
+
- name: free disk space
|
|
20
|
+
uses: endersonmenezes/free-disk-space@v3
|
|
21
|
+
with:
|
|
22
|
+
remove_android: true
|
|
23
|
+
remove_dotnet: true
|
|
24
|
+
remove_haskell: true
|
|
25
|
+
rm_cmd: "rmz"
|
|
26
|
+
|
|
27
|
+
- uses: actions/checkout@v6
|
|
20
28
|
with:
|
|
21
29
|
fetch-depth: 0
|
|
22
30
|
|
|
23
31
|
- uses: conda-incubator/setup-miniconda@v3
|
|
24
32
|
with:
|
|
25
33
|
python-version: 3.11
|
|
26
|
-
channels: conda-forge
|
|
34
|
+
channels: conda-forge
|
|
27
35
|
channel-priority: strict
|
|
28
36
|
show-channel-urls: true
|
|
29
37
|
miniforge-version: latest
|
|
@@ -38,21 +46,21 @@ jobs:
|
|
|
38
46
|
conda config --set always_yes yes
|
|
39
47
|
conda install --quiet \
|
|
40
48
|
--file=requirements.txt
|
|
41
|
-
conda install
|
|
49
|
+
conda install --quiet \
|
|
42
50
|
pip \
|
|
43
51
|
setuptools \
|
|
44
52
|
"setuptools_scm>=7,<8" \
|
|
45
53
|
matplotlib \
|
|
46
54
|
astropy \
|
|
47
55
|
h5py \
|
|
48
|
-
mpi4py
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
pip install --no-deps git+https://github.com/ArgonneCPAC/diffmah.git
|
|
54
|
-
pip install --no-deps git+https://github.com/ArgonneCPAC/diffstar.git
|
|
55
|
-
pip install --no-deps git+https://github.com/ArgonneCPAC/dsps.git
|
|
56
|
+
mpi4py \
|
|
57
|
+
mpich
|
|
58
|
+
conda uninstall diffmah --force
|
|
59
|
+
conda uninstall diffstar --force
|
|
60
|
+
conda uninstall dsps --force
|
|
61
|
+
pip install --no-deps --no-build-isolation git+https://github.com/ArgonneCPAC/diffmah.git
|
|
62
|
+
pip install --no-deps --no-build-isolation git+https://github.com/ArgonneCPAC/diffstar.git
|
|
63
|
+
pip install --no-deps --no-build-isolation git+https://github.com/ArgonneCPAC/dsps.git
|
|
56
64
|
python -m pip install --no-build-isolation --no-deps -e .
|
|
57
65
|
|
|
58
66
|
- name: download dsps data
|
|
@@ -85,7 +93,7 @@ jobs:
|
|
|
85
93
|
mkdir -p ci_test_output
|
|
86
94
|
|
|
87
95
|
# Run mock production script
|
|
88
|
-
mpiexec -n 1 python scripts/LJ_LC_MOCKS/
|
|
96
|
+
mpiexec -n 1 python scripts/LJ_LC_MOCKS/make_ou26_mock.py \
|
|
89
97
|
poboy \
|
|
90
98
|
0.01 \
|
|
91
99
|
0.2 \
|
|
@@ -97,7 +105,8 @@ jobs:
|
|
|
97
105
|
-sfh_model smdpl_dr1 \
|
|
98
106
|
-synthetic_cores 1 \
|
|
99
107
|
-lgmp_min 12.0 \
|
|
100
|
-
-lgmp_max 13.0
|
|
108
|
+
-lgmp_max 13.0 \
|
|
109
|
+
--lsst_only
|
|
101
110
|
|
|
102
111
|
- name: verify script completed
|
|
103
112
|
shell: bash -l {0}
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
0.3.2 (2025-12-04)
|
|
2
|
+
-------------------
|
|
3
|
+
- Resolve bug in the treatment of scatter in the SSP errors.
|
|
4
|
+
- Component vs composite SEDs now exactly agree
|
|
5
|
+
- Improved CI and unit testing
|
|
6
|
+
- See (https://github.com/ArgonneCPAC/diffsky/pull/284) for details.
|
|
7
|
+
|
|
8
|
+
|
|
1
9
|
0.3.1 (2025-11-23)
|
|
2
10
|
-------------------
|
|
3
11
|
- Update diffsky to be compatible with diffstar v1.0.2 (https://github.com/ArgonneCPAC/diffsky/pull/277)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '0.3.2'
|
{diffsky-0.3.1 → diffsky-0.3.2}/diffsky/data_loaders/hacc_utils/data_validation/validate_lc_mock.py
RENAMED
|
@@ -9,10 +9,10 @@ from diffstar import DEFAULT_DIFFSTAR_PARAMS
|
|
|
9
9
|
from dsps.cosmology.flat_wcdm import age_at_z
|
|
10
10
|
|
|
11
11
|
from .... import phot_utils
|
|
12
|
-
from ....experimental import
|
|
12
|
+
from ....experimental import dbk_from_mock2
|
|
13
13
|
from ....experimental import precompute_ssp_phot as psspp
|
|
14
14
|
from ....param_utils import diffsky_param_wrapper as dpw
|
|
15
|
-
from .. import
|
|
15
|
+
from .. import lc_mock_repro as lcmp
|
|
16
16
|
from .. import load_flat_hdf5, load_lc_cf
|
|
17
17
|
|
|
18
18
|
REQUIRED_METADATA_ATTRS = ("creation_date", "README", "mock_version_name")
|
|
@@ -95,6 +95,7 @@ def check_all_data_columns_have_metadata(fn_lc_mock):
|
|
|
95
95
|
|
|
96
96
|
msg = []
|
|
97
97
|
with h5py.File(fn_lc_mock, "r") as hdf:
|
|
98
|
+
|
|
98
99
|
for key in hdf["data"].keys():
|
|
99
100
|
try:
|
|
100
101
|
unit = hdf["data/" + key].attrs["unit"]
|
|
@@ -275,12 +276,10 @@ def check_recomputed_photometry(fn_lc_mock, n_test=200, return_results=False):
|
|
|
275
276
|
|
|
276
277
|
drn_mock = os.path.dirname(fn_lc_mock)
|
|
277
278
|
tcurves = lcmp.load_diffsky_tcurves(drn_mock, mock_version_name)
|
|
278
|
-
t_table = lcmp.load_diffsky_t_table(drn_mock, mock_version_name)
|
|
279
279
|
ssp_data = lcmp.load_diffsky_ssp_data(drn_mock, mock_version_name)
|
|
280
280
|
sim_info = lcmp.load_diffsky_sim_info(fn_lc_mock)
|
|
281
281
|
|
|
282
282
|
mock = load_flat_hdf5(fn_lc_mock, dataset="data", iend=n_test)
|
|
283
|
-
n_gals = mock["redshift_true"].size
|
|
284
283
|
|
|
285
284
|
mah_params = DEFAULT_MAH_PARAMS._make(
|
|
286
285
|
[mock[key] for key in DEFAULT_MAH_PARAMS._fields]
|
|
@@ -291,11 +290,6 @@ def check_recomputed_photometry(fn_lc_mock, n_test=200, return_results=False):
|
|
|
291
290
|
param_collection = lcmp.load_diffsky_param_collection(drn_mock, mock_version_name)
|
|
292
291
|
t_obs = age_at_z(mock["redshift_true"], *sim_info.cosmo_params)
|
|
293
292
|
|
|
294
|
-
_msk_q = mock["mc_sfh_type"].reshape((n_gals, 1))
|
|
295
|
-
delta_scatter = np.where(
|
|
296
|
-
_msk_q == 0, mock["delta_scatter_q"], mock["delta_scatter_ms"]
|
|
297
|
-
)
|
|
298
|
-
|
|
299
293
|
# Precompute photometry at each element of the redshift table
|
|
300
294
|
z_phot_table = lcmp.load_diffsky_z_phot_table(fn_lc_mock)
|
|
301
295
|
wave_eff_table = phot_utils.get_wave_eff_table(z_phot_table, tcurves)
|
|
@@ -304,31 +298,43 @@ def check_recomputed_photometry(fn_lc_mock, n_test=200, return_results=False):
|
|
|
304
298
|
tcurves, ssp_data, z_phot_table, sim_info.cosmo_params
|
|
305
299
|
)
|
|
306
300
|
|
|
301
|
+
mc_is_q = np.where(mock["mc_sfh_type"] == 0, True, False)
|
|
307
302
|
args = (
|
|
303
|
+
mc_is_q,
|
|
304
|
+
mock["uran_av"],
|
|
305
|
+
mock["uran_delta"],
|
|
306
|
+
mock["uran_funo"],
|
|
307
|
+
mock["uran_pburst"],
|
|
308
|
+
mock["delta_mag_ssp_scatter"],
|
|
309
|
+
sfh_params,
|
|
308
310
|
mock["redshift_true"],
|
|
309
311
|
t_obs,
|
|
310
312
|
mah_params,
|
|
311
|
-
mock["
|
|
312
|
-
t_table,
|
|
313
|
+
mock["fknot"],
|
|
313
314
|
ssp_data,
|
|
314
315
|
precomputed_ssp_mag_table,
|
|
315
316
|
z_phot_table,
|
|
316
317
|
wave_eff_table,
|
|
317
|
-
sfh_params,
|
|
318
318
|
param_collection.mzr_params,
|
|
319
319
|
param_collection.spspop_params,
|
|
320
320
|
param_collection.scatter_params,
|
|
321
321
|
param_collection.ssperr_params,
|
|
322
322
|
sim_info.cosmo_params,
|
|
323
323
|
sim_info.fb,
|
|
324
|
-
mock["uran_av"],
|
|
325
|
-
mock["uran_delta"],
|
|
326
|
-
mock["uran_funo"],
|
|
327
|
-
delta_scatter,
|
|
328
|
-
mock["mc_sfh_type"],
|
|
329
|
-
mock["fknot"],
|
|
330
324
|
)
|
|
331
|
-
|
|
325
|
+
_res = dbk_from_mock2._reproduce_mock_dbk_kern(*args)
|
|
326
|
+
(
|
|
327
|
+
phot_info,
|
|
328
|
+
phot_randoms,
|
|
329
|
+
disk_bulge_history,
|
|
330
|
+
obs_mags_bulge,
|
|
331
|
+
obs_mags_disk,
|
|
332
|
+
obs_mags_knots,
|
|
333
|
+
) = _res
|
|
334
|
+
phot_info = phot_info._asdict()
|
|
335
|
+
phot_info["obs_mags_bulge"] = obs_mags_bulge
|
|
336
|
+
phot_info["obs_mags_disk"] = obs_mags_disk
|
|
337
|
+
phot_info["obs_mags_knots"] = obs_mags_knots
|
|
332
338
|
|
|
333
339
|
if return_results:
|
|
334
340
|
return mock, phot_info, tcurves
|
|
@@ -31,7 +31,7 @@ from jax import vmap
|
|
|
31
31
|
from ...dustpop.tw_dust import DEFAULT_DUST_PARAMS
|
|
32
32
|
from ...ellipsoidal_shapes import bulge_shapes, disk_shapes, ellipse_proj_kernels
|
|
33
33
|
from ...experimental import mc_diffsky_disk_bulge_knot_seds as mc_dbk_sed
|
|
34
|
-
from ...experimental import mc_diffsky_seds
|
|
34
|
+
from ...experimental import mc_diffsky_seds, mc_phot
|
|
35
35
|
from ...experimental.black_hole_modeling import black_hole_mass as bhm
|
|
36
36
|
from ...experimental.black_hole_modeling.black_hole_accretion_rate import (
|
|
37
37
|
monte_carlo_bh_acc_rate,
|
|
@@ -435,36 +435,15 @@ def add_sed_quantities_to_mock(
|
|
|
435
435
|
return phot_info, lc_data, diffsky_data
|
|
436
436
|
|
|
437
437
|
|
|
438
|
-
def
|
|
439
|
-
sim_info
|
|
440
|
-
lc_data,
|
|
441
|
-
diffsky_data,
|
|
442
|
-
ssp_data,
|
|
443
|
-
param_collection,
|
|
444
|
-
precomputed_ssp_mag_table,
|
|
445
|
-
z_phot_table,
|
|
446
|
-
wave_eff_table,
|
|
447
|
-
ran_key,
|
|
448
|
-
):
|
|
449
|
-
(
|
|
450
|
-
diffstarpop_params,
|
|
451
|
-
mzr_params,
|
|
452
|
-
spspop_params,
|
|
453
|
-
scatter_params,
|
|
454
|
-
ssp_err_pop_params,
|
|
455
|
-
) = param_collection
|
|
456
|
-
|
|
457
|
-
diffsky_data["t_obs"] = flat_wcdm.age_at_z(
|
|
458
|
-
lc_data["redshift_true"], *sim_info.cosmo_params
|
|
459
|
-
)
|
|
438
|
+
def add_diffmah_properties_to_mock(diffsky_data, redshift_true, sim_info, ran_key):
|
|
439
|
+
diffsky_data["t_obs"] = flat_wcdm.age_at_z(redshift_true, *sim_info.cosmo_params)
|
|
460
440
|
|
|
461
441
|
mah_params = DEFAULT_MAH_PARAMS._make(
|
|
462
442
|
[diffsky_data[key] for key in DEFAULT_MAH_PARAMS._fields]
|
|
463
443
|
)
|
|
464
444
|
|
|
465
|
-
ran_key, mah_key = jran.split(ran_key, 2)
|
|
466
445
|
mah_params, msk_has_diffmah_fit = load_lc_cf.get_imputed_mah_params(
|
|
467
|
-
|
|
446
|
+
ran_key, diffsky_data, sim_info.lgt0
|
|
468
447
|
)
|
|
469
448
|
for pname, pval in zip(mah_params._fields, mah_params):
|
|
470
449
|
diffsky_data[pname] = pval
|
|
@@ -481,6 +460,71 @@ def add_dbk_sed_quantities_to_mock(
|
|
|
481
460
|
np.zeros(mah_params.logm0.size) + diffsky_data["t_obs"],
|
|
482
461
|
sim_info.lgt0,
|
|
483
462
|
)
|
|
463
|
+
return diffsky_data
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
def add_dbk_phot_quantities_to_mock(
|
|
467
|
+
sim_info,
|
|
468
|
+
lc_data,
|
|
469
|
+
diffsky_data,
|
|
470
|
+
ssp_data,
|
|
471
|
+
param_collection,
|
|
472
|
+
precomputed_ssp_mag_table,
|
|
473
|
+
z_phot_table,
|
|
474
|
+
wave_eff_table,
|
|
475
|
+
ran_key,
|
|
476
|
+
):
|
|
477
|
+
ran_key, mah_key = jran.split(ran_key, 2)
|
|
478
|
+
diffsky_data = add_diffmah_properties_to_mock(
|
|
479
|
+
diffsky_data, lc_data["redshift_true"], sim_info, mah_key
|
|
480
|
+
)
|
|
481
|
+
|
|
482
|
+
mah_params = DEFAULT_MAH_PARAMS._make(
|
|
483
|
+
[diffsky_data[key] for key in DEFAULT_MAH_PARAMS._fields]
|
|
484
|
+
)
|
|
485
|
+
|
|
486
|
+
dbk_phot_info = mc_phot.mc_lc_dbk_phot(
|
|
487
|
+
ran_key,
|
|
488
|
+
lc_data["redshift_true"],
|
|
489
|
+
diffsky_data["t_obs"],
|
|
490
|
+
mah_params,
|
|
491
|
+
ssp_data,
|
|
492
|
+
precomputed_ssp_mag_table,
|
|
493
|
+
z_phot_table,
|
|
494
|
+
wave_eff_table,
|
|
495
|
+
*param_collection,
|
|
496
|
+
sim_info.cosmo_params,
|
|
497
|
+
sim_info.fb,
|
|
498
|
+
)
|
|
499
|
+
|
|
500
|
+
# Discard columns storing non-tabular data
|
|
501
|
+
dbk_phot_info = dbk_phot_info._asdict()
|
|
502
|
+
dbk_phot_info.pop("burstiness")
|
|
503
|
+
dbk_phot_info.pop("t_table")
|
|
504
|
+
|
|
505
|
+
return dbk_phot_info, lc_data, diffsky_data
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
def add_dbk_sed_quantities_to_mock(
|
|
509
|
+
sim_info,
|
|
510
|
+
lc_data,
|
|
511
|
+
diffsky_data,
|
|
512
|
+
ssp_data,
|
|
513
|
+
param_collection,
|
|
514
|
+
precomputed_ssp_mag_table,
|
|
515
|
+
z_phot_table,
|
|
516
|
+
wave_eff_table,
|
|
517
|
+
ran_key,
|
|
518
|
+
):
|
|
519
|
+
|
|
520
|
+
ran_key, mah_key = jran.split(ran_key, 2)
|
|
521
|
+
diffsky_data = add_diffmah_properties_to_mock(
|
|
522
|
+
diffsky_data, lc_data["redshift_true"], sim_info, mah_key
|
|
523
|
+
)
|
|
524
|
+
|
|
525
|
+
mah_params = DEFAULT_MAH_PARAMS._make(
|
|
526
|
+
[diffsky_data[key] for key in DEFAULT_MAH_PARAMS._fields]
|
|
527
|
+
)
|
|
484
528
|
|
|
485
529
|
t_table = np.linspace(T_TABLE_MIN, 10**sim_info.lgt0, N_T_TABLE)
|
|
486
530
|
|
|
@@ -496,11 +540,7 @@ def add_dbk_sed_quantities_to_mock(
|
|
|
496
540
|
precomputed_ssp_mag_table,
|
|
497
541
|
z_phot_table,
|
|
498
542
|
wave_eff_table,
|
|
499
|
-
|
|
500
|
-
mzr_params,
|
|
501
|
-
spspop_params,
|
|
502
|
-
scatter_params,
|
|
503
|
-
ssp_err_pop_params,
|
|
543
|
+
*param_collection,
|
|
504
544
|
sim_info.cosmo_params,
|
|
505
545
|
sim_info.fb,
|
|
506
546
|
)
|
|
@@ -523,9 +563,6 @@ def add_morphology_quantities_to_diffsky_data(
|
|
|
523
563
|
phot_info["bulge_to_total_history"],
|
|
524
564
|
)
|
|
525
565
|
|
|
526
|
-
diffsky_data["sfh_bulge"] = phot_info["sfh_bulge"]
|
|
527
|
-
diffsky_data["sfh_disk"] = phot_info["sfh_table"] - diffsky_data["sfh_bulge"]
|
|
528
|
-
|
|
529
566
|
morph_key, disk_size_key, bulge_size_key = jran.split(morph_key, 3)
|
|
530
567
|
r50_disk, zscore_disk = dbs.mc_r50_disk_size(
|
|
531
568
|
10 ** phot_info["logsm_obs"], lc_data["redshift_true"], disk_size_key
|
|
@@ -650,14 +687,23 @@ def concatenate_batched_phot_data(phot_batches):
|
|
|
650
687
|
|
|
651
688
|
phot_info = dict()
|
|
652
689
|
for key in phot_batches[0][0].keys():
|
|
653
|
-
|
|
690
|
+
try:
|
|
691
|
+
phot_info[key] = np.concatenate([x[0][key] for x in phot_batches])
|
|
692
|
+
except ValueError:
|
|
693
|
+
raise ValueError(f"Unable to concatenate phot_info['{key}']")
|
|
654
694
|
|
|
655
695
|
lc_data = dict()
|
|
656
696
|
for key in phot_batches[0][1].keys():
|
|
657
|
-
|
|
697
|
+
try:
|
|
698
|
+
lc_data[key] = np.concatenate([x[1][key] for x in phot_batches])
|
|
699
|
+
except ValueError:
|
|
700
|
+
raise ValueError(f"Unable to concatenate lc_data['{key}']")
|
|
658
701
|
|
|
659
702
|
diffsky_data = dict()
|
|
660
703
|
for key in phot_batches[0][2].keys():
|
|
661
|
-
|
|
704
|
+
try:
|
|
705
|
+
diffsky_data[key] = np.concatenate([x[2][key] for x in phot_batches])
|
|
706
|
+
except ValueError:
|
|
707
|
+
raise ValueError(f"Unable to concatenate diffsky_data['{key}']")
|
|
662
708
|
|
|
663
709
|
return phot_info, lc_data, diffsky_data
|