Skip to content

Commit

Permalink
Fix numba and LHA
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhekhorn committed Jul 29, 2022
1 parent f8eb456 commit 44b581c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions benchmarks/lha_paper_bench.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ def run_lha(self, theory_updates):
[
{
"Q2grid": [1e4],
"configs": {"ev_op_iterations": 10},
"xgrid": make_lambert_grid(60).tolist(),
"ev_op_iterations": 10,
"interpolation_xgrid": make_lambert_grid(60).tolist(),
}
],
["ToyLH"],
Expand Down
4 changes: 2 additions & 2 deletions src/eko/evolution_operator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def __init__(
self._mellin_cut = mellin_cut
self.is_threshold = is_threshold
self.op_members = {}
self.order = config["order"]
self.order = tuple(config["order"])

@property
def n_pools(self):
Expand Down Expand Up @@ -376,7 +376,7 @@ def quad_ker(self, label, logx, areas):
nf=self.nf,
L=np.log(self.fact_to_ren),
ev_op_iterations=self.config["ev_op_iterations"],
ev_op_max_order=self.config["ev_op_max_order"],
ev_op_max_order=tuple(self.config["ev_op_max_order"]),
sv_mode=self.sv_mode,
is_threshold=self.is_threshold,
)
Expand Down

0 comments on commit 44b581c

Please sign in to comment.