Skip to content

Commit

Permalink
Fix QED FFNS apfel bench
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhekhorn committed Jan 15, 2025
1 parent f3f027a commit 6fea38a
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions benchmarks/apfel_bench.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,6 @@ def benchmark_plain_pol(self, pto):

th = self.ffns_theory.copy()
th.update({"PTO": [pto]})
th["ModEv"] = ["EXA"] # TODO for the time one is sufficient
op = operators.apfel_config.copy()
op["polarized"] = [True]
self.run(cartesian_product(th), operators.build(op), ["ToyLH"])
Expand Down Expand Up @@ -203,6 +202,8 @@ class BenchmarkFFNS_qed(ApfelBenchmark):
# "TRN",
],
"NfFF": 5,
"nf0": 5,
"nfref": 5,
"kcThr": 0.0,
"kbThr": 0.0,
"ktThr": np.inf,
Expand Down Expand Up @@ -310,14 +311,14 @@ def benchmark_plain(self, pto, qed):

if __name__ == "__main__":
# obj = BenchmarkVFNS()
obj = BenchmarkFFNS()
# obj = BenchmarkFFNS()

# obj.benchmark_plain_pol(2)
obj.benchmark_plain(0)
# obj.benchmark_plain(0)
# obj.benchmark_sv(2, "exponentiated")
# obj.benchmark_kthr(2)
# obj.benchmark_msbar(2)

# obj = BenchmarkFFNS_qed()
# obj = BenchmarkFFNS_qed()
# obj.benchmark_plain(2, 2)
obj = BenchmarkFFNS_qed()
obj.benchmark_plain(2, 2)

0 comments on commit 6fea38a

Please sign in to comment.