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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230 | @register_impls
class LinalgFunctions(InterpreterFunctions):
@impl(linalg.GenericOp)
def run_generic(
self, interpreter: Interpreter, op: linalg.GenericOp, args: tuple[Any, ...]
) -> PythonValues:
if op.library_call is not None:
raise NotImplementedError(
"library_call not yet supported in linalg.generic interpreter"
)
return run_linalg_structured_op(interpreter, op, args)
@impl_terminator(linalg.YieldOp)
def run_yield(
self, interpreter: Interpreter, op: linalg.YieldOp, args: tuple[Any, ...]
):
return ReturnedValues(args), ()
@impl(linalg.AddOp)
def run_add(
self, interpreter: Interpreter, op: linalg.AddOp, args: tuple[Any, ...]
) -> tuple[Any, ...]:
return run_linalg_structured_op(interpreter, op, args)
@impl(linalg.FillOp)
def run_fill(
self, interpreter: Interpreter, op: linalg.FillOp, args: tuple[Any, ...]
) -> tuple[Any, ...]:
operand, res = args[0], args[1]
assert isinstance(operand, ShapedArray)
assert isinstance(res, ShapedArray)
operand = cast(ShapedArray[float], operand)
res = cast(ShapedArray[float], res)
if not all(res.data_ptr[i] == 0.0 for i in range(len(res.data))):
raise NotImplementedError()
for i in range(len(res.data)):
res.data_ptr[i] = operand.data_ptr[0]
if len(op.results) > 0:
return (res,)
return ()
@impl(linalg.MulOp)
def run_mul(
self, interpreter: Interpreter, op: linalg.MulOp, args: tuple[Any, ...]
) -> tuple[Any, ...]:
return run_linalg_structured_op(interpreter, op, args)
@impl(linalg.TransposeOp)
def run_transpose(
self, interpreter: Interpreter, op: linalg.TransposeOp, args: tuple[Any, ...]
) -> tuple[Any, ...]:
operand, res = args[0], args[1]
assert isinstance(operand, ShapedArray)
assert isinstance(res, ShapedArray)
operand = cast(ShapedArray[float], operand)
res = cast(ShapedArray[float], res)
if not all(res.data_ptr[i] == 0.0 for i in range(len(res.data))):
raise NotImplementedError()
assert len(operand.shape) == 2
assert len(res.shape) == 2
rows, cols = operand.shape
for i in range(rows):
for j in range(cols):
res.data_ptr[j * rows + i] = operand.data_ptr[i * cols + j]
if len(op.results) > 0:
return (res,)
return ()
@impl(linalg.MatmulOp)
def run_mat_mul(
self, interpreter: Interpreter, op: linalg.MatmulOp, args: tuple[Any, ...]
) -> tuple[Any, ...]:
return run_linalg_structured_op(interpreter, op, args)
@impl(linalg.PoolingNchwMaxOp)
def run_pooling_nchw_max(
self,
interpreter: Interpreter,
op: linalg.PoolingNchwMaxOp,
args: tuple[Any, ...],
) -> tuple[Any, ...]:
input, kernel_filter, res = args[0], args[1], args[2]
assert isinstance(input, ShapedArray)
assert isinstance(kernel_filter, ShapedArray)
assert isinstance(res, ShapedArray)
input = cast(ShapedArray[float], input)
kernel_filter = cast(ShapedArray[float], kernel_filter)
res = cast(ShapedArray[float], res)
if not all(res.data_ptr[i] == 0.0 for i in range(len(res.data))):
raise NotImplementedError()
strides_type = op.strides.type
assert isinstance(strides_type, TensorType)
(strides_shape,) = strides_type.get_shape()
strides = op.strides.get_values()
if strides_shape != 2:
raise NotImplementedError("Only 2d max pooling supported")
m_height, m_width = input.shape[2:]
ky, kx = kernel_filter.shape[0], kernel_filter.shape[1]
# convert input into a numpy like array
input_data = [
[input.data[r * m_width + c] for c in range(m_width)]
for r in range(m_height)
]
output: list[float] = []
for k in range(0, m_height - ky + 1, strides[0]):
for l in range(0, m_width - kx + 1, strides[0]):
block_max_value = float("-inf")
for i in range(k, k + ky):
for j in range(l, l + kx):
block_max_value = max(block_max_value, input_data[i][j])
output.append(block_max_value)
for i in range(len(output)):
res.data_ptr[i] = output[i]
if len(op.results) > 0:
return (res,)
return ()
@impl(linalg.Conv2DNchwFchwOp)
def run_conv_2d_nchw_fchw(
self,
interpreter: Interpreter,
op: linalg.Conv2DNchwFchwOp,
args: tuple[Any, ...],
) -> tuple[Any, ...]:
input, kernel_filter, res = args[0], args[1], args[2]
assert isinstance(input, ShapedArray)
assert isinstance(kernel_filter, ShapedArray)
assert isinstance(res, ShapedArray)
input = cast(ShapedArray[float], input)
kernel_filter = cast(ShapedArray[float], kernel_filter)
res = cast(ShapedArray[float], res)
if not all(res.data_ptr[i] == 0.0 for i in range(len(res.data))):
raise NotImplementedError()
m_height, m_width = input.shape[2:]
ky, kx = kernel_filter.shape[2], kernel_filter.shape[3]
strides = op.strides.get_values()
# convert input into a numpy like array
input_data = [
[input.data[r * m_width + c] for c in range(m_width)]
for r in range(m_height)
]
# convert kernel into a numpy like array
kernel_data = [
[
kernel_filter.data[r * kernel_filter.shape[3] + c]
for c in range(kernel_filter.shape[3])
]
for r in range(kernel_filter.shape[2])
]
output: list[float] = []
for k in range(0, m_height - ky + 1, strides[0]):
for l in range(0, m_width - kx + 1, strides[0]):
conv_value: float = 0.0
for i in range(k, k + ky):
for j in range(l, l + kx):
conv_value += input_data[i][j] * kernel_data[i - k][j - l]
output.append(conv_value)
for i in range(len(output)):
res.data_ptr[i] = output[i]
if len(op.results) > 0:
return (res,)
return ()
|