@@ -30,7 +30,7 @@ class SlurmClusterExecutor(BaseExecutor):
3030 max_workers (int): for backwards compatibility with the standard library, max_workers also defines the number of
3131 cores which can be used in parallel - just like the max_cores parameter. Using max_cores is
3232 recommended, as computers have a limited number of compute cores.
33- cache_directory (str, optional): The directory to store cache files. Defaults to "cache ".
33+ cache_directory (str, optional): The directory to store cache files. Defaults to "executorlib_cache ".
3434 max_cores (int): defines the number cores which can be used in parallel
3535 resource_dict (dict): A dictionary of resources required by the task. With the following keys:
3636 - cores (int): number of MPI cores to be used for each function call
@@ -106,7 +106,7 @@ def __init__(
106106 max_workers (int): for backwards compatibility with the standard library, max_workers also defines the
107107 number of cores which can be used in parallel - just like the max_cores parameter. Using
108108 max_cores is recommended, as computers have a limited number of compute cores.
109- cache_directory (str, optional): The directory to store cache files. Defaults to "cache ".
109+ cache_directory (str, optional): The directory to store cache files. Defaults to "executorlib_cache ".
110110 max_cores (int): defines the number cores which can be used in parallel
111111 resource_dict (dict): A dictionary of resources required by the task. With the following keys:
112112 - cores (int): number of MPI cores to be used for each function call
@@ -207,7 +207,7 @@ class SlurmJobExecutor(BaseExecutor):
207207 max_workers (int): for backwards compatibility with the standard library, max_workers also defines the number of
208208 cores which can be used in parallel - just like the max_cores parameter. Using max_cores is
209209 recommended, as computers have a limited number of compute cores.
210- cache_directory (str, optional): The directory to store cache files. Defaults to "cache ".
210+ cache_directory (str, optional): The directory to store cache files. Defaults to "executorlib_cache ".
211211 max_cores (int): defines the number cores which can be used in parallel
212212 resource_dict (dict): A dictionary of resources required by the task. With the following keys:
213213 - cores (int): number of MPI cores to be used for each function call
@@ -287,7 +287,7 @@ def __init__(
287287 max_workers (int): for backwards compatibility with the standard library, max_workers also defines the
288288 number of cores which can be used in parallel - just like the max_cores parameter. Using
289289 max_cores is recommended, as computers have a limited number of compute cores.
290- cache_directory (str, optional): The directory to store cache files. Defaults to "cache ".
290+ cache_directory (str, optional): The directory to store cache files. Defaults to "executorlib_cache ".
291291 max_cores (int): defines the number cores which can be used in parallel
292292 resource_dict (dict): A dictionary of resources required by the task. With the following keys:
293293 - cores (int): number of MPI cores to be used for each function call
@@ -389,7 +389,7 @@ def create_slurm_executor(
389389 number of cores which can be used in parallel - just like the max_cores parameter. Using
390390 max_cores is recommended, as computers have a limited number of compute cores.
391391 max_cores (int): defines the number cores which can be used in parallel
392- cache_directory (str, optional): The directory to store cache files. Defaults to "cache ".
392+ cache_directory (str, optional): The directory to store cache files. Defaults to "executorlib_cache ".
393393 resource_dict (dict): A dictionary of resources required by the task. With the following keys:
394394 - cores (int): number of MPI cores to be used for each function call
395395 - threads_per_core (int): number of OpenMP threads to be used for each function call
0 commit comments