Skip to content

Commit

Permalink
Prevent Thread Oversubscription with threadpoolclt
Browse files Browse the repository at this point in the history
In a cluster setting, thread oversubscription can lead to significant
performance degradation and resource contention for running the deconvolution
with scipy.optimize.  This commit addresses this issue by utilizing
the `threadpoolclt` library to limit the number of threads to 1.

This change ensures that each process uses only the allocated resources,
preventing contention and improving overall cluster stability.
  • Loading branch information
gordonkoehn committed Oct 16, 2024
1 parent 3c5a732 commit c2dcbc1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
14 changes: 12 additions & 2 deletions lollipop/cli/deconvolute.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import pandas as pd
import numpy as np
from tqdm import tqdm, trange
from threadpoolctl import ThreadpoolController

import lollipop as ll

Expand Down Expand Up @@ -147,6 +148,10 @@ def _deconvolute_bootstrap(
The deconvolution results for the location and bootstrap iterations.
"""

# monitor the number of threads, to prevent oversubscription on blas / cluster systmes
controller = ThreadpoolController()
logging.info(f"Threading configuration:\n {controller.info()}")

# deconvolution results
deconv = []

Expand Down Expand Up @@ -232,7 +237,7 @@ def _deconvolute_bootstrap(
# just run one on everything
weights = {}

# deconvolution
# define deconvolution kernel
t_kdec = ll.KernelDeconv(
temp_df2[var_dates["var_dates"][mindate] + ["undetermined"]],
temp_df2["frac"],
Expand All @@ -242,7 +247,11 @@ def _deconvolute_bootstrap(
confint=confint(**confint_params),
**weights,
)
t_kdec = t_kdec.deconv_all(**deconv_params)
# limit the number of threads, to prevent oversubscription on blas / cluster systmes
with controller.limit(limits=1, user_api='blas'):
# do the deconvolution
t_kdec = t_kdec.deconv_all(**deconv_params)

if have_confint:
# with conf int
res = t_kdec.fitted.copy()
Expand Down Expand Up @@ -389,6 +398,7 @@ def deconvolute(
tally_data,
namefield,
):

# load data
yaml = ruamel.yaml.YAML(typ="rt")
print("load data")
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ strictyaml = { version = ">=1.7", optional = true }
tqdm = { version = ">=4.64", optional = true }
click = { version = "^8.0", optional = true }
click-option-group = { version = "^0.5", optional = true }
threadpoolctl = "^3.5.0"

[tool.poetry.extras]
cli = [ "zstandard", "ruamel.yaml", "strictyaml", "tqdm", "click", "click-option-group" ]
Expand Down

0 comments on commit c2dcbc1

Please sign in to comment.