Skip to content
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

Rewrite weights #90

Merged
merged 28 commits into from
Dec 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
5e0c476
Start intrinsic
felixhekhorn Nov 12, 2020
16e0f7d
Init rewrite
felixhekhorn Nov 17, 2020
03eecf0
Remove NNLO DIS fncs
felixhekhorn Nov 17, 2020
d98e0c4
Start writing 'the FNS book'
alecandido Nov 17, 2020
537fc77
Merge branch 'feature/reorder-weights' of github.com:N3PDF/yadism int…
alecandido Nov 17, 2020
2199434
Init cf_combiner
felixhekhorn Nov 18, 2020
8c8a61c
Merge branch 'feature/reorder-weights' of github.com:N3PDF/yadism int…
felixhekhorn Nov 18, 2020
fbe3d38
Merge branch 'feature/intrinsic' into feature/reorder-weights
felixhekhorn Nov 18, 2020
219a160
Start cf_combiner
felixhekhorn Nov 18, 2020
34af06c
Complete cf_comb in FFNS
felixhekhorn Nov 19, 2020
6c40bbd
Blacken code, fix nc total
felixhekhorn Nov 23, 2020
65aa0da
Fix FFNS
felixhekhorn Nov 24, 2020
cece1a1
Add ZM-VFNS
felixhekhorn Nov 25, 2020
312e644
Work on FONLL
felixhekhorn Nov 25, 2020
1b6bbe0
Upgrade Output
felixhekhorn Nov 26, 2020
a3223e7
Clean ESFResult up
felixhekhorn Nov 26, 2020
8d8f4bb
Add pineappl default grid to yadmark
alecandido Nov 30, 2020
eec06c3
Add PDFOutput class
alecandido Nov 30, 2020
f92547a
Add pineappl benchmark observables runcard
alecandido Nov 30, 2020
e0ce0bc
Fix the pineappl sample observables runcard
alecandido Nov 30, 2020
b093ba8
Add PineAPPL runner and debug
felixhekhorn Dec 1, 2020
5d754a7
Update PineAPPL debug
felixhekhorn Dec 1, 2020
36aa025
Update PineAPPL debug
felixhekhorn Dec 1, 2020
e4b3408
Work on FONLL
felixhekhorn Dec 1, 2020
6735945
Blacken code
felixhekhorn Dec 1, 2020
3300b03
Fix FONLL-A in CC
felixhekhorn Dec 2, 2020
8e5b0e4
Fix FONLL damping, fix cc weight range
felixhekhorn Dec 2, 2020
14cd9d0
Add FONLL_l^d
felixhekhorn Dec 3, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 19 additions & 13 deletions benchmarks/runners/benchmark_against_apfel.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def run_external(

def plain_assert_external(theory, obs, sf, yad):
# APFEL has a discretization in Q2/m2
if sf == "FLcharm" and yad["Q2"] < 1.5*theory["mc"] ** 2:
if sf == "FLcharm" and yad["Q2"] < 1.5 * theory["mc"] ** 2:
return dict(abs=3e-5)
if sf == "FLbottom" and theory["mb"] ** 2 / 4 < yad["Q2"] < theory["mb"] ** 2:
return dict(abs=5e-6)
Expand Down Expand Up @@ -106,13 +106,11 @@ def benchmark_NLO(self):
assert_external=plain_assert_external,
)


def sv_assert_external(theory, obs, sf, yad):
if np.isclose(theory["XIF"], 1) and np.isclose(theory["XIR"], 1):
return plain_assert_external(theory, obs, sf, yad)
if (
sf == "FLbottom"
and theory["mb"] ** 2 / 4 < yad["Q2"] < theory["mb"] ** 2
):
if sf == "FLbottom" and theory["mb"] ** 2 / 4 < yad["Q2"] < theory["mb"] ** 2:
# APFEL has a discreization in Q2/m2
return dict(abs=1e-5)
if sf == "FLcharm" and yad["Q2"] < 7:
Expand All @@ -123,10 +121,7 @@ def sv_assert_external(theory, obs, sf, yad):
return dict(abs=2e-4) # production threshold
if sf[:2] == "F3" and yad["Q2"] > 900:
return dict(abs=3e-5) # why does the thing go worse again?
if (
sf == "F3charm"
and yad["x"] < 2e-3
):
if sf == "F3charm" and yad["x"] < 2e-3:
# there is a cancelation between sbar and g going on:
# each of the channels is O(1) with O(1e-3) accuracy
return dict(abs=5e-3)
Expand All @@ -139,6 +134,7 @@ def sv_assert_external(theory, obs, sf, yad):
return dict(abs=5e-2)
return None


@pytest.mark.commit_check
class BenchmarkScaleVariations(ApfelBenchmark):
"""Vary factorization and renormalization scale"""
Expand All @@ -152,7 +148,10 @@ def benchmark_NLO(self):
return self.run_external(
1,
["CT14llo_NF3"],
{"XIR": None, "XIF": None,},
{
"XIR": None,
"XIF": None,
},
{"prDIS": None},
assert_external=sv_assert_external,
)
Expand Down Expand Up @@ -209,7 +208,11 @@ def ffns_assert(theory, obs, sf, yad):
if theory["NfFF"] < 5:
return plain_assert_external(theory, obs, sf, yad)
# TODO https://github.com/N3PDF/yadism/wiki/2020_05_28-F2charm-FFNS4-low-Q2-non-zero
if theory["NfFF"] == 5 and sf[2:] in ["bottom", "total"] and yad["Q2"] < theory["mb"] ** 2:
if (
theory["NfFF"] == 5
and sf[2:] in ["bottom", "total"]
and yad["Q2"] < theory["mb"] ** 2
):
return False
return None

Expand All @@ -232,7 +235,10 @@ def benchmark_NLO_ZM_VFNS(self):
@pytest.mark.fonll
def benchmark_NLO_FONLL(self):
def fonll_assert(theory, _obs, sf, yad):
if sf == "FLbottom" and theory["mb"] ** 2 / 4 < yad["Q2"] < theory["mb"] ** 2:
if (
sf == "FLbottom"
and theory["mb"] ** 2 / 4 < yad["Q2"] < theory["mb"] ** 2
):
# APFEL has a discreization in Q2/m2
return dict(abs=5e-6)
if sf == "FLcharm" and yad["Q2"] < 7 and theory["DAMP"] == 1:
Expand All @@ -243,7 +249,7 @@ def fonll_assert(theory, _obs, sf, yad):
1,
["CT14llo_NF6"],
{"FNS": self._db().theory_query.FNS == "FONLL-A", "DAMP": None},
assert_external=fonll_assert
assert_external=fonll_assert,
)


Expand Down
7 changes: 6 additions & 1 deletion benchmarks/runners/benchmark_against_qcdnum.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,12 @@ def run_external(
PTO > 0
): # by default we're running in FFNS3, so we can use the big runcard
obs_query &= self.db.obs_query.F2charm.exists()
return self.db.run_external(PTO, pdfs, theory_update, obs_query,)
return self.db.run_external(
PTO,
pdfs,
theory_update,
obs_query,
)


@pytest.mark.quick_check
Expand Down
50 changes: 50 additions & 0 deletions benchmarks/runners/pineappl.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# -*- coding: utf-8 -*-
# pylint: skip-file
import pathlib
import numpy as np

import yaml
import lhapdf

import yadism

data = pathlib.Path(__file__).parent / "pineappl"

# read input
with open(data / "pineappl_sample_obs.yaml") as o:
obs = yaml.safe_load(o)
with open(data / "pineappl_sample_theory.yaml") as o:
theory = yaml.safe_load(o)

# run yadism
out = yadism.run_yadism(theory, obs)
out.dump_yaml_to_file(data / "pineappl_sample.yaml")

# apply uonly pdf
pdf_set = lhapdf.mkPDF("CT14llo_NF6", 0)
pdf_out = out.apply_pdf(pdf_set)
pdf_out.dump_yaml_to_file(data / "pineappl_sample_CT14llo_NF6_0000.yaml")

# debug first element
def list_pdfs(lhapdf_like, pids, Q2, xiF, xgrid):
# factorization scale
muF2 = Q2 * xiF ** 2
pdfs = np.zeros((len(pids), len(xgrid)))
for j, pid in enumerate(pids):
if not lhapdf_like.hasFlavor(pid):
continue
pdfs[j] = np.array([lhapdf_like.xfxQ2(pid, z, muF2) / z for z in xgrid])
return pdfs


# first_esf = out["F2total"][0]
# first_pdfs = list_pdfs(pdf_set,out["pids"],first_esf.Q2, out["xiF"], out["interpolation_xgrid"])
# u_idx = out["pids"].index(1)
# # store debug information
# debug_first = {
# "x": out["interpolation_xgrid"].tolist(),
# "grid": first_esf.values[u_idx].tolist(),
# "xfx/x": first_pdfs[u_idx].tolist(),
# }
# with open(data / "debug_first.yaml", "w") as o:
# yaml.safe_dump(debug_first, o)
50 changes: 50 additions & 0 deletions benchmarks/runners/pineappl/pineappl_default_grid.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
- 1
- 0.9309440808717544
- 0.8627839323906108
- 0.7956242522922756
- 0.7295868442414312
- 0.6648139482473823
- 0.601472197967335
- 0.5397572337880445
- 0.4798989029610255
- 0.4221667753589648
- 0.3668753186482242
- 0.31438740076927585
- 0.2651137041582823
- 0.2195041265003886
- 0.17802566042569432
- 0.14112080644440345
- 0.10914375746330703
- 0.08228122126204893
- 0.060480028754447364
- 0.04341491741702269
- 0.030521584007828916
- 0.02108918668378717
- 0.014375068581090129
- 0.009699159574043398
- 0.006496206194633799
- 0.004328500638820811
- 0.0028738675812817515
- 0.0019034634022867384
- 0.0012586797144272762
- 0.0008314068836488144
- 0.0005487795323670796
- 0.00036205449638139736
- 0.00023878782918561914
- 0.00015745605600841445
- 0.00010381172986576898
- 0.00006843744918967896
- 0.00004511438394964044
- 0.0000297384953722449
- 0.000019602505002391748
- 0.00001292101569074731
- 0.000008516806677573355
- 0.000005613757716930151
- 0.0000037002272069854957
- 0.000002438943292891682
- 0.000001607585498470808
- 0.0000010596094959101024
- 0.0000006984208530700364
- 0.00000046035014748963906
- 0.0000003034304765867952
- 0.00000019999999999999954
Loading