Skip to content
Merged
Changes from all commits
Commits
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
5 changes: 5 additions & 0 deletions python/lsst/meas/algorithms/gp_interpolation.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,15 @@
from lsst.geom import Box2I, Point2I
from lsst.afw.geom import SpanSet
import copy
import treecorr
import treegp

import logging

# We need to explicitly turn off multiprocessing in treecorr which is used
# by treegp.
treecorr.set_max_omp_threads(1)

__all__ = [
"InterpolateOverDefectGaussianProcess",
"GaussianProcessTreegp",
Expand Down
Loading