-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathdag.py
165 lines (150 loc) · 5.64 KB
/
dag.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
from functools import partial
from typing import Any, AnyStr, List, Sequence, Union
import numpy as np
from redisai import command_builder as builder
from redisai.postprocessor import Processor
from deprecated import deprecated
import warnings
processor = Processor()
class Dag:
def __init__(self, load, persist, routing, timeout, executor, readonly=False):
self.result_processors = []
self.enable_postprocess = True
self.deprecatedDagrunMode = load is None and persist is None and routing is None
self.readonly = readonly
self.executor = executor
if readonly and persist:
raise RuntimeError(
"READONLY requests cannot write (duh!) and should not "
"have PERSISTing values"
)
if self.deprecatedDagrunMode:
# Throw warning about using deprecated dagrun
warnings.warn("Creating Dag without any of LOAD, PERSIST and ROUTING arguments"
"is allowed only in deprecated AI.DAGRUN or AI.DAGRUN_RO commands", DeprecationWarning)
# Use dagrun
if readonly:
self.commands = ["AI.DAGRUN_RO"]
else:
self.commands = ["AI.DAGRUN"]
else:
# Use dagexecute
if readonly:
self.commands = ["AI.DAGEXECUTE_RO"]
else:
self.commands = ["AI.DAGEXECUTE"]
if load is not None:
if not isinstance(load, (list, tuple)):
self.commands += ["LOAD", 1, load]
else:
self.commands += ["LOAD", len(load), *load]
if persist is not None:
if not isinstance(persist, (list, tuple)):
self.commands += ["PERSIST", 1, persist]
else:
self.commands += ["PERSIST", len(persist), *persist]
if routing is not None:
self.commands += ["ROUTING", routing]
if timeout is not None:
self.commands += ["TIMEOUT", timeout]
self.commands.append("|>")
def tensorset(
self,
key: AnyStr,
tensor: Union[np.ndarray, list, tuple],
shape: Sequence[int] = None,
dtype: str = None,
) -> Any:
args = builder.tensorset(key, tensor, shape, dtype)
self.commands.extend(args)
self.commands.append("|>")
self.result_processors.append(bytes.decode)
return self
def tensorget(
self,
key: AnyStr,
as_numpy: bool = True,
as_numpy_mutable: bool = False,
meta_only: bool = False,
) -> Any:
args = builder.tensorget(key, as_numpy, as_numpy_mutable)
self.commands.extend(args)
self.commands.append("|>")
self.result_processors.append(
partial(
processor.tensorget,
as_numpy=as_numpy,
as_numpy_mutable=as_numpy_mutable,
meta_only=meta_only,
)
)
return self
@deprecated(version="1.2.0", reason="Use modelexecute instead")
def modelrun(
self,
key: AnyStr,
inputs: Union[AnyStr, List[AnyStr]],
outputs: Union[AnyStr, List[AnyStr]],
) -> Any:
if self.deprecatedDagrunMode:
args = builder.modelrun(key, inputs, outputs)
self.commands.extend(args)
self.commands.append("|>")
self.result_processors.append(bytes.decode)
return self
else:
return self.modelexecute(key, inputs, outputs)
def modelexecute(
self,
key: AnyStr,
inputs: Union[AnyStr, List[AnyStr]],
outputs: Union[AnyStr, List[AnyStr]],
) -> Any:
if self.deprecatedDagrunMode:
raise RuntimeError(
"You are using deprecated version of DAG, that does not supports MODELEXECUTE."
"The new version requires giving at least one of LOAD, PERSIST and ROUTING"
"arguments when constructing the Dag"
)
args = builder.modelexecute(key, inputs, outputs, None)
self.commands.extend(args)
self.commands.append("|>")
self.result_processors.append(bytes.decode)
return self
def scriptexecute(
self,
key: AnyStr,
function: str,
keys: Union[AnyStr, Sequence[AnyStr]] = None,
inputs: Union[AnyStr, Sequence[AnyStr]] = None,
args: Union[AnyStr, Sequence[AnyStr]] = None,
outputs: Union[AnyStr, List[AnyStr]] = None,
) -> Any:
if self.readonly:
raise RuntimeError(
"AI.SCRIPTEXECUTE cannot be used in readonly mode"
)
if self.deprecatedDagrunMode:
raise RuntimeError(
"You are using deprecated version of DAG, that does not supports SCRIPTEXECUTE."
"The new version requires giving at least one of LOAD, PERSIST and ROUTING"
"arguments when constructing the Dag"
)
args = builder.scriptexecute(key, function, keys, inputs, args, outputs, None)
self.commands.extend(args)
self.commands.append("|>")
self.result_processors.append(bytes.decode)
return self
@deprecated(version="1.2.0", reason="Use execute instead")
def run(self):
return self.execute()
def execute(self):
commands = self.commands[:-1] # removing the last "|>"
results = self.executor(*commands)
if self.enable_postprocess:
out = []
for res, fn in zip(results, self.result_processors):
out.append(fn(res))
else:
out = results
return out