Skip to content

Commit 7ac3fe9

Browse files
committed
Do NOT use parallel mode in kingmaker: it's grabbing all of the cores, causing issues. Also remove a print line.
1 parent 7911f76 commit 7ac3fe9

2 files changed

Lines changed: 0 additions & 3 deletions

File tree

kingmaker/fitting.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -417,8 +417,6 @@ def _fit_single_bin(
417417
self.fit_beta[param_idx] = best_params[1]
418418
self.fit_quality[param_idx] = best_chi2
419419

420-
print(f"Best fit: {best_params}")
421-
422420
# Store histogram data (pad/truncate to match storage size)
423421
n_store = min(len(hist), self.dpsi_nbins)
424422
self.histograms[param_idx][:n_store] = hist[:n_store]

kingmaker/utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ def _interp1d(x: float, xlow: float, xhigh: float, ylow: float, yhigh: float) ->
4040
],
4141
"(),(),(n),(m),(n,m)->()",
4242
cache=True,
43-
target="parallel",
4443
)
4544
def _interp2d(x, y, xp, yp, z, result):
4645
"""

0 commit comments

Comments
 (0)