1
1
import typing
2
2
from pathlib import Path
3
+ from typing import Any
3
4
4
5
import dask .distributed
5
6
@@ -9,6 +10,7 @@ class DummyFuture(dask.distributed.Future):
9
10
A class that mimics a distributed Future, the outcome of
10
11
performing submit on a distributed client.
11
12
"""
13
+
12
14
def __init__ (self , result : typing .Any ) -> None :
13
15
self ._result = result # type: typing.Any
14
16
@@ -33,13 +35,24 @@ class SingleThreadedClient(dask.distributed.Client):
33
35
A class to Mock the Distributed Client class, in case
34
36
Auto-Sklearn is meant to run in the current Thread.
35
37
"""
38
+
36
39
def __init__ (self ) -> None :
37
40
38
41
# Raise a not implemented error if using a method from Client
39
- implemented_methods = ['submit' , 'close' , 'shutdown' , 'write_scheduler_file' ,
40
- '_get_scheduler_info' , 'nthreads' ]
41
- method_list = [func for func in dir (dask .distributed .Client ) if callable (
42
- getattr (dask .distributed .Client , func )) and not func .startswith ('__' )]
42
+ implemented_methods = [
43
+ "submit" ,
44
+ "close" ,
45
+ "shutdown" ,
46
+ "write_scheduler_file" ,
47
+ "_get_scheduler_info" ,
48
+ "nthreads" ,
49
+ ]
50
+ method_list = [
51
+ func
52
+ for func in dir (dask .distributed .Client )
53
+ if callable (getattr (dask .distributed .Client , func ))
54
+ and not func .startswith ("__" )
55
+ ]
43
56
for method in method_list :
44
57
if method in implemented_methods :
45
58
continue
@@ -54,8 +67,24 @@ def submit(
54
67
func : typing .Callable ,
55
68
* args : typing .List ,
56
69
priority : int = 0 ,
57
- ** kwargs : typing .Dict ,
70
+ key : Any = None ,
71
+ workers : Any = None ,
72
+ resources : Any = None ,
73
+ retries : Any = None ,
74
+ fifo_timeout : Any = "100 ms" ,
75
+ allow_other_workers : Any = False ,
76
+ actor : Any = False ,
77
+ actors : Any = False ,
78
+ pure : Any = None ,
79
+ ** kwargs : Any ,
58
80
) -> typing .Any :
81
+ """
82
+ Note
83
+ ----
84
+ The keyword arguments caught in `dask.distributed.Client` need to
85
+ be specified here so they don't get passed in as ``**kwargs`` to the
86
+ ``func``.
87
+ """
59
88
return DummyFuture (func (* args , ** kwargs ))
60
89
61
90
def close (self ) -> None :
@@ -70,17 +99,17 @@ def write_scheduler_file(self, scheduler_file: str) -> None:
70
99
71
100
def _get_scheduler_info (self ) -> typing .Dict :
72
101
return {
73
- ' workers' : [' 127.0.0.1' ],
74
- ' type' : ' Scheduler' ,
102
+ " workers" : [" 127.0.0.1" ],
103
+ " type" : " Scheduler" ,
75
104
}
76
105
77
106
def nthreads (self ) -> typing .Dict :
78
107
return {
79
- ' 127.0.0.1' : 1 ,
108
+ " 127.0.0.1" : 1 ,
80
109
}
81
110
82
111
def __repr__ (self ) -> str :
83
- return ' SingleThreadedClient()'
112
+ return " SingleThreadedClient()"
84
113
85
114
def __del__ (self ) -> None :
86
115
pass
0 commit comments