Commit e66ed791 authored by BO ZHANG's avatar BO ZHANG 🏀
Browse files

add n_jobs and backend to dm

parent 5f786af9
...@@ -107,6 +107,10 @@ class CsstMsDataManager: ...@@ -107,6 +107,10 @@ class CsstMsDataManager:
If True, clear ``dm.dir_l1`` directory. If True, clear ``dm.dir_l1`` directory.
verbose : bool verbose : bool
If True, print verbose info. If True, print verbose info.
n_jobs : int
The number of jobs.
backend : str
The joblib backend.
Examples Examples
-------- --------
...@@ -152,6 +156,8 @@ class CsstMsDataManager: ...@@ -152,6 +156,8 @@ class CsstMsDataManager:
log_mod="csst-l1mod.log", log_mod="csst-l1mod.log",
clear_dir=False, clear_dir=False,
verbose=True, verbose=True,
n_jobs=18,
backend="multiprocessing"
): ):
# version # version
...@@ -211,7 +217,8 @@ class CsstMsDataManager: ...@@ -211,7 +217,8 @@ class CsstMsDataManager:
# record hard code names in history # record hard code names in history
self.hardcode_history = [] self.hardcode_history = []
self.n_jobs = 18 self.n_jobs = n_jobs
self.backend = backend
# aXe # aXe
self.set_env() self.set_env()
...@@ -287,7 +294,17 @@ class CsstMsDataManager: ...@@ -287,7 +294,17 @@ class CsstMsDataManager:
raise DeprecationWarning("This method is deprecated, please directly use dm.target_detectors = detectors!") raise DeprecationWarning("This method is deprecated, please directly use dm.target_detectors = detectors!")
@staticmethod @staticmethod
def from_dir(ver_sim="C5.2", datatype="mbi", dir_l0=".", dir_l1=".", path_aux="", use_dfs=False, dfs_node="kmust"): def from_dir(
ver_sim="C5.2",
datatype="mbi",
dir_l0=".",
dir_l1=".",
path_aux="",
use_dfs=False,
dfs_node="kmust",
n_jobs=18,
backend="multiprocessing"
):
""" initialize the multi-band imaging data manager """ """ initialize the multi-band imaging data manager """
assert ver_sim in ["C5.2", ] assert ver_sim in ["C5.2", ]
...@@ -310,24 +327,27 @@ class CsstMsDataManager: ...@@ -310,24 +327,27 @@ class CsstMsDataManager:
# exp_stop = int(exp_stop) # exp_stop = int(exp_stop)
# obs_id = int(obs_id) # obs_id = int(obs_id)
return CsstMsDataManager(ver_sim=ver_sim, return CsstMsDataManager(
datatype=datatype, ver_sim=ver_sim,
available_detectors=available_detectors, datatype=datatype,
target_detectors=None, available_detectors=available_detectors,
dir_l0=dir_l0, target_detectors=None,
dir_l1=dir_l1, dir_l0=dir_l0,
path_aux=path_aux, # bias dark flat dir_l1=dir_l1,
use_dfs=use_dfs, path_aux=path_aux, # bias dark flat
dfs_node=dfs_node, use_dfs=use_dfs,
obs_id=obs_id, dfs_node=dfs_node,
exp_start=exp_start, obs_id=obs_id,
exp_stop=exp_stop, exp_start=exp_start,
_telescope=_telescope, exp_stop=exp_stop,
_instrument=_instrument, _telescope=_telescope,
_survey=_survey, _instrument=_instrument,
obs_type=obs_type, _survey=_survey,
l0_post="_".join(l0_post), obs_type=obs_type,
) l0_post="_".join(l0_post),
n_jobs=n_jobs,
backend=backend
)
@staticmethod @staticmethod
def glob_image(dir_l0, ver_sim="C5.2"): def glob_image(dir_l0, ver_sim="C5.2"):
...@@ -641,7 +661,9 @@ class CsstMsDataManager: ...@@ -641,7 +661,9 @@ class CsstMsDataManager:
use_dfs=True, use_dfs=True,
dfs_node="pml", dfs_node="pml",
clear_l1=False, clear_l1=False,
dfs_root="/share/dfs" dfs_root="/share/dfs",
n_jobs=18,
backend="multiprocessing"
): ):
""" Initialize CsstMsDataManager from DFS. """ """ Initialize CsstMsDataManager from DFS. """
# (clear and) make directories # (clear and) make directories
...@@ -684,7 +706,8 @@ class CsstMsDataManager: ...@@ -684,7 +706,8 @@ class CsstMsDataManager:
# initialize dm # initialize dm
dm = CsstMsDataManager.from_dir( dm = CsstMsDataManager.from_dir(
ver_sim="C5.2", datatype=datatype, dir_l0=dir_l0, dir_l1=dir_l1, ver_sim="C5.2", datatype=datatype, dir_l0=dir_l0, dir_l1=dir_l1,
path_aux=path_aux, use_dfs=use_dfs, dfs_node=dfs_node path_aux=path_aux, use_dfs=use_dfs, dfs_node=dfs_node,
n_jobs=n_jobs, backend=backend
) )
assert dm.obs_id == obs_id assert dm.obs_id == obs_id
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment