-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
53 changed files
with
1,626 additions
and
634 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
if ! has nix_direnv_version || ! nix_direnv_version 2.2.1; then | ||
source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/2.2.1/direnvrc" "sha256-zelF0vLbEl5uaqrfIzbgNzJWGmLzCmYAkInj/LNxvKs=" | ||
fi | ||
|
||
nix_direnv_watch_file devenv.nix | ||
nix_direnv_watch_file devenv.lock | ||
nix_direnv_watch_file devenv.yaml | ||
if ! use flake . --impure | ||
then | ||
echo "devenv could not be built. The devenv environment was not loaded. Make the necessary changes to devenv.nix and hit enter to try again." >&2 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -160,3 +160,4 @@ validation-report.json | |
|
||
# Folders to ignore | ||
node_modules | ||
.devenv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
import pathlib | ||
|
||
import numpy as np | ||
import pytest | ||
from banana import toy | ||
|
||
from eko import EKO | ||
from eko.io import runcards | ||
from eko.io.types import ReferenceRunning | ||
from eko.runner.managed import solve | ||
from ekobox import apply | ||
|
||
here = pathlib.Path(__file__).parent.absolute() | ||
MC = 1.51 | ||
C_PID = 4 | ||
|
||
# theory settings | ||
th_raw = dict( | ||
order=[3, 0], | ||
couplings=dict( | ||
alphas=0.118, | ||
alphaem=0.007496252, | ||
scale=91.2, | ||
num_flavs_ref=5, | ||
max_num_flavs=6, | ||
), | ||
heavy=dict( | ||
num_flavs_init=4, | ||
num_flavs_max_pdf=6, | ||
intrinsic_flavors=[], | ||
masses=[ReferenceRunning([mq, np.nan]) for mq in (MC, 4.92, 172.5)], | ||
masses_scheme="POLE", | ||
matching_ratios=[1.0, 1.0, np.inf], | ||
), | ||
xif=1.0, | ||
n3lo_ad_variation=(0, 0, 0, 0, 0, 0, 0), | ||
matching_order=[2, 0], | ||
) | ||
|
||
# operator settings | ||
op_raw = dict( | ||
mu0=1.65, | ||
xgrid=[0.0001, 0.001, 0.01, 0.1, 1], | ||
mugrid=[(MC, 3), (MC, 4)], | ||
configs=dict( | ||
evolution_method="truncated", | ||
ev_op_max_order=[1, 0], | ||
ev_op_iterations=1, | ||
interpolation_polynomial_degree=4, | ||
interpolation_is_log=True, | ||
scvar_method="exponentiated", | ||
inversion_method="exact", | ||
n_integration_cores=0, | ||
polarized=False, | ||
time_like=False, | ||
), | ||
debug=dict( | ||
skip_singlet=False, | ||
skip_non_singlet=False, | ||
), | ||
) | ||
|
||
|
||
@pytest.mark.isolated | ||
def benchmark_inverse_matching(): | ||
th_card = runcards.TheoryCard.from_dict(th_raw) | ||
op_card = runcards.OperatorCard.from_dict(op_raw) | ||
|
||
eko_path2 = here / "test2.tar" | ||
eko_path2.unlink(missing_ok=True) | ||
solve(th_card, op_card, eko_path2) | ||
|
||
th_card.matching_order = [1, 0] | ||
eko_path1 = here / "test1.tar" | ||
eko_path1.unlink(missing_ok=True) | ||
solve(th_card, op_card, eko_path1) | ||
|
||
eko_output1 = EKO.read(eko_path1) | ||
eko_output2 = EKO.read(eko_path2) | ||
op1_nf3 = eko_output1[(MC**2, 3)] | ||
op2_nf3 = eko_output2[(MC**2, 3)] | ||
op1_nf4 = eko_output1[(MC**2, 4)] | ||
op2_nf4 = eko_output2[(MC**2, 4)] | ||
|
||
# test that nf=4 operators are the same | ||
np.testing.assert_allclose(op1_nf4.operator, op2_nf4.operator) | ||
|
||
with pytest.raises(AssertionError): | ||
np.testing.assert_allclose(op2_nf3.operator, op2_nf4.operator) | ||
|
||
with pytest.raises(AssertionError): | ||
np.testing.assert_allclose(op1_nf3.operator, op1_nf4.operator) | ||
|
||
with pytest.raises(AssertionError): | ||
np.testing.assert_allclose(op1_nf3.operator, op2_nf3.operator) | ||
|
||
pdf1 = apply.apply_pdf(eko_output1, toy.mkPDF("ToyLH", 0)) | ||
pdf2 = apply.apply_pdf(eko_output2, toy.mkPDF("ToyLH", 0)) | ||
|
||
# test that different PTO matching is applied correctly | ||
np.testing.assert_allclose( | ||
pdf1[(MC**2, 4)]["pdfs"][C_PID], pdf2[(MC**2, 4)]["pdfs"][C_PID] | ||
) | ||
with pytest.raises(AssertionError): | ||
np.testing.assert_allclose( | ||
pdf1[(MC**2, 3)]["pdfs"][C_PID], pdf2[(MC**2, 3)]["pdfs"][C_PID] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
*.tar | ||
*.csv |
Oops, something went wrong.