-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpBLSTM.py
executable file
·378 lines (328 loc) · 14.1 KB
/
OpBLSTM.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
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
import theano
import theano.gradient
import theano.tensor as T
import theano.printing
import theano.gof
from theano.sandbox.cuda.basic_ops import (as_cuda_ndarray_variable,
gpu_contiguous)
from theano.gof.opt import OpSub
from theano.compile import optdb
import os
class BLSTMOpGrad(theano.sandbox.cuda.GpuOp):
def __init__(self, inplace):
self.inplace = inplace
if inplace:
#all outputs operate inplace on inputs 4 and 6 (which are DY and H)
#but when the input is marked multiple times, we get an error
#so we only mark that output 0 destroys inputs 4 and 6
#anyway theano knows that inputs 4 and 6 will be destroyed, so it should be OK
#TODO
self.destroy_map = {0: [7], 1: [8], 2: [11], 3: [12]}
def __eq__(self, other):
return type(self) == type(other) and self.inplace == other.inplace
def __str__(self):
if self.inplace:
return '%s{inplace}' % self.__class__.__name__
else:
return '%s{no_inplace}' % self.__class__.__name__
def __hash__(self):
return hash(type(self)) ^ hash(self.inplace)
def make_node(self, V_f, V_b, c_f, c_b, idx_f, idx_b, Dd_f, Dd_b, DY_f, DY_b, Y_f, Y_b, H_f, H_b):
V_f = gpu_contiguous(as_cuda_ndarray_variable(V_f))
V_b = gpu_contiguous(as_cuda_ndarray_variable(V_b))
c_f = gpu_contiguous(as_cuda_ndarray_variable(c_f))
c_b = gpu_contiguous(as_cuda_ndarray_variable(c_b))
DY_f = gpu_contiguous(as_cuda_ndarray_variable(DY_f))
DY_b = gpu_contiguous(as_cuda_ndarray_variable(DY_b))
idx_f = gpu_contiguous(as_cuda_ndarray_variable(T.cast(idx_f,'float32')))
idx_b = gpu_contiguous(as_cuda_ndarray_variable(T.cast(idx_b, 'float32')))
Dd_f = gpu_contiguous(as_cuda_ndarray_variable(Dd_f))
Dd_b = gpu_contiguous(as_cuda_ndarray_variable(Dd_b))
assert V_f.dtype == "float32"
assert V_b.dtype == "float32"
assert DY_f.dtype == 'float32'
assert DY_b.dtype == 'float32'
assert Y_f.dtype == 'float32'
assert Y_b.dtype == 'float32'
assert H_f.dtype == 'float32'
assert H_b.dtype == 'float32'
assert c_f.dtype == 'float32'
assert c_b.dtype == 'float32'
assert V_f.ndim == 2
assert V_b.ndim == 2
assert DY_f.ndim == 3
assert DY_b.ndim == 3
assert Y_f.ndim == 3
assert Y_b.ndim == 3
assert H_f.ndim == 3
assert H_b.ndim == 3
assert c_f.ndim == 2
assert c_b.ndim == 2
assert idx_f.ndim == 2
assert idx_b.ndim == 2
return theano.Apply(self, [V_f, V_b, c_f, c_b, idx_f, idx_b, Dd_f, Dd_b, DY_f, DY_b, Y_f, Y_b, H_f, H_b],
[H_f.type(), H_b.type(), V_f.type(), V_b.type(), c_f.type(), c_b.type()])
def infer_shape(self, node, input_shapes):
V_fs, V_bs, c_fs, c_bs, idx_fs, idx_bs, Dd_fs, Dd_bs, DYs_fs, DYs_bs, Y_fs, Y_bs, H_fs, H_bs = input_shapes
return [H_fs, H_bs, V_fs, V_bs, c_fs, c_bs]
def c_support_code(self):
crnn_path = os.path.dirname(__file__)
with open(crnn_path + "/c_support_code_mdlstm.cpp") as f:
return f.read()
def c_code(self, node, name, input_names, output_names, sub):
V_f, V_b, c_f, c_b, i_f, i_b, Dd_f, Dd_b, DY_f, DY_b, Y_f, Y_b, H_f, H_b = input_names
DZ_f, DZ_b, DV_f, DV_b, Dc_f, Dc_b = output_names
fail = sub['fail']
inplace = "true" if self.inplace else "false"
return """
if(!%(inplace)s)
{
//std::cout << "warning, inplace optimization failed, not working inplace" << std::endl;
}
if(%(DZ_f)s || %(DV_f)s || %(Dc_b)s || %(DZ_b)s || %(DV_b)s || %(Dc_b)s)
{
//printf("output storage already exists\\n");
//TODO check if we can reuse it
Py_XDECREF(%(DZ_f)s);
Py_XDECREF(%(DV_f)s);
Py_XDECREF(%(Dc_f)s);
Py_XDECREF(%(DZ_b)s);
Py_XDECREF(%(DV_b)s);
Py_XDECREF(%(Dc_b)s);
}
CudaNdarray * epsilon_f = 0;
CudaNdarray * epsilon_b = 0;
CudaNdarray * delta_f = 0;
CudaNdarray * delta_b = 0;
if(%(inplace)s)
{
epsilon_f = %(DY_f)s;
epsilon_b = %(DY_b)s;
delta_f = %(H_f)s;
delta_b = %(H_b)s;
Py_XINCREF(delta_f);
Py_XINCREF(delta_b);
}
else
{
epsilon_f = (CudaNdarray *) CudaNdarray_Copy(%(DY_f)s);
delta_f = (CudaNdarray *) CudaNdarray_Copy(%(H_f)s);
epsilon_b = (CudaNdarray *) CudaNdarray_Copy(%(DY_b)s);
delta_b = (CudaNdarray *) CudaNdarray_Copy(%(H_b)s);
}
const int * H_dim = CudaNdarray_HOST_DIMS(%(H_f)s);
int y = 0;
for(int x = H_dim[0]-1; x >= 0; --x)
{
//add recurrent
bool rightBorder = (x == H_dim[0]-1);
if(!rightBorder)
{
affine_y_x(y, x+1, delta_f, y, x, %(V_f)s, y, x, epsilon_f, false, true);
affine_y_x(y, x+1, delta_b, y, x, %(V_b)s, y, x, epsilon_b, false, true);
}
/*
do_lstm_bwd(delta_f, epsilon_f, %(Y_f)s, %(Dd_f)s, %(c_f)s, y, x, rightBorder, %(i_f)s);
do_lstm_bwd(delta_b, epsilon_b, %(Y_b)s, %(Dd_b)s, %(c_b)s, y, x, rightBorder, %(i_b)s);
*/
do_blstm_bwd(delta_f, delta_b, epsilon_f, epsilon_b, %(Y_f)s, %(Y_b)s, %(Dd_f)s, %(Dd_b)s, %(c_f)s, %(c_b)s,
y, x, rightBorder, %(i_f)s, %(i_b)s);
}
%(DV_f)s = CudaNdarray_uninitialized_like(%(V_f)s);
//DV_h = Y[0..end-1]^T * delta[1..end]
affine_global(%(Y_f)s, delta_f, %(DV_f)s, true, false, 1, 0.0f);
%(DZ_f)s = delta_f;
%(Dc_f)s = CudaNdarray_uninitialized_like(%(c_f)s);
const int * Y_dim = CudaNdarray_HOST_DIMS(%(Y_f)s);
cudaMemcpy(CudaNdarray_DEV_DATA(%(Dc_f)s), CudaNdarray_DEV_DATA(epsilon_f),
Y_dim[1]*Y_dim[2]*sizeof(float), cudaMemcpyDeviceToDevice);
%(DV_b)s = CudaNdarray_uninitialized_like(%(V_b)s);
affine_global(%(Y_b)s, delta_b, %(DV_b)s, true, false, 1, 0.0f);
%(DZ_b)s = delta_b;
%(Dc_b)s = CudaNdarray_uninitialized_like(%(c_b)s);
cudaMemcpy(CudaNdarray_DEV_DATA(%(Dc_b)s), CudaNdarray_DEV_DATA(epsilon_b),
Y_dim[1]*Y_dim[2]*sizeof(float), cudaMemcpyDeviceToDevice);
if(!%(inplace)s)
{
Py_XDECREF(epsilon_f);
Py_XDECREF(epsilon_b);
}
""" % locals()
#!!! change this when changing the code!
def c_code_cache_version(self):
return 1, 7
BLSTMOpGradNoInplaceInstance = BLSTMOpGrad(inplace=False)
BLSTMOpGradInplaceInstance = BLSTMOpGrad(inplace=True)
BLSTMOpGradInplaceOpt = OpSub(BLSTMOpGradNoInplaceInstance, BLSTMOpGradInplaceInstance)
#hack to avoid being called twice
if not hasattr(optdb, 'BLSTMOpGradInplaceOpt_registered'):
optdb.register('BLSTMOpGradInplaceOpt', theano.gof.TopoOptimizer(BLSTMOpGradInplaceOpt),
50.0, 'fast_run', 'inplace', 'gpuarray')
optdb.BLSTMOpGradInplaceOpt_registered = True
#------------------------
class BLSTMOp(theano.sandbox.cuda.GpuOp):
def __init__(self, inplace):
self.inplace = inplace
if inplace:
#all outputs operate inplace on input 0 (which is Z)
#but when the input is marked multiple times, we get an error
#so we only mark that output 0 destroys input 0
#anyway theano knows that input 0 will be destroyed, so it should be OK
#TODO
#self.destroy_map = {0: [0], 1: [1]} # use this if z_fw and z_bw differ
self.destroy_map = {0: [0]}
def __eq__(self, other):
return type(self) == type(other) and self.inplace == other.inplace
def __str__(self):
if self.inplace:
return '%s{inplace}' % self.__class__.__name__
else:
return '%s{no_inplace}' % self.__class__.__name__
def __hash__(self):
return hash(type(self)) ^ hash(self.inplace)
def make_node(self, Z_f, Z_b, V_f, V_b, c_f, c_b, i_f, i_b):
"""
:param Z_f: {input,output,forget} gate + cell state forward. 3d (time,batch,dim*4)
:param Z_b: {input,output,forget} gate + cell state backward. 3d (time,batch,dim*4)
:param V_f: forward recurrent matrix. 2d (dim,dim*4)
:param V_b: backward recurrent matrix. 2d (dim,dim*4)
:param c_f: initial forward cell state. 2d (batch,dim)
:param c_b: initial backward cell state. 2d (batch,dim)
:param i: index. 2d (time,batch) -> 0 or 1
"""
Z_f = gpu_contiguous(as_cuda_ndarray_variable(Z_f))
Z_b = gpu_contiguous(as_cuda_ndarray_variable(Z_b))
V_f = gpu_contiguous(as_cuda_ndarray_variable(V_f))
V_b = gpu_contiguous(as_cuda_ndarray_variable(V_b))
c_f = gpu_contiguous(as_cuda_ndarray_variable(c_f))
c_b = gpu_contiguous(as_cuda_ndarray_variable(c_b))
i_f = gpu_contiguous(as_cuda_ndarray_variable(T.cast(i_f,'float32')))
i_b = gpu_contiguous(as_cuda_ndarray_variable(T.cast(i_b, 'float32')))
assert Z_f.dtype == "float32"
assert Z_f.dtype == "float32"
assert V_f.dtype == "float32"
assert V_b.dtype == "float32"
assert c_f.dtype == 'float32'
assert c_f.ndim == 2
assert c_b.dtype == 'float32'
assert c_b.ndim == 2
assert Z_f.ndim == 3
assert Z_b.ndim == 3
assert i_f.ndim == 2
assert i_b.ndim == 2
assert V_f.ndim == 2
assert V_b.ndim == 2
# results: output Y, (gates and cell state) H, (final cell state) d
return theano.Apply(self, [Z_f, Z_b, V_f, V_b, c_f, c_b, i_f, i_b],
[Z_f.type(), Z_f.type(), Z_f.type(), Z_f.type(), c_f.type(), c_b.type()])
def c_support_code(self):
crnn_path = os.path.dirname(__file__)
with open(crnn_path + "/c_support_code_mdlstm.cpp") as f:
return f.read()
def c_code(self, node, name, input_names, output_names, sub):
Z_f, Z_b, V_f, V_b, c_f, c_b, i_f, i_b = input_names
Y_f, Y_b, H_f, H_b, d_f, d_b = output_names
fail = sub['fail']
inplace = "true" if self.inplace else "false"
return """
if(%(Y_f)s || %(H_f)s || %(d_f)s || %(Y_b)s || %(H_b)s || %(d_b)s)
{
//printf("Y or H or d already exist\\n");
//TODO check if we can reuse it
Py_XDECREF(%(Y_f)s);
Py_XDECREF(%(Y_b)s);
Py_XDECREF(%(H_f)s);
Py_XDECREF(%(H_b)s);
Py_XDECREF(%(d_f)s);
Py_XDECREF(%(d_b)s);
}
const int * Z_dim = CudaNdarray_HOST_DIMS(%(Z_f)s);
const int dims_Y[] = {Z_dim[0], Z_dim[1], Z_dim[2] / 4};
const int dims_H[] = {Z_dim[0], Z_dim[1], Z_dim[2]};
const int dims_d[] = {Z_dim[1], Z_dim[2] / 4};
int size_d = Z_dim[1] * Z_dim[2] / 4;
%(Y_f)s = (CudaNdarray*) CudaNdarray_NewDims(3,dims_Y);
%(Y_b)s = (CudaNdarray*) CudaNdarray_NewDims(3,dims_Y);
%(d_f)s = (CudaNdarray*) CudaNdarray_NewDims(2, dims_d);
%(d_b)s = (CudaNdarray*) CudaNdarray_NewDims(2, dims_d);
if(%(inplace)s)
{
%(H_f)s = %(Z_f)s;
Py_INCREF(%(Z_f)s);
%(H_b)s = %(Z_b)s;
Py_INCREF(%(Z_b)s);
}
else
{
printf("no inplace\\n");
%(H_f)s = (CudaNdarray*) CudaNdarray_NewDims(3,dims_H);
cudaMemcpy(CudaNdarray_DEV_DATA(%(H_f)s), CudaNdarray_DEV_DATA(%(Z_f)s),
dims_H[0]*dims_H[1]*dims_H[2]*sizeof(float), cudaMemcpyDeviceToDevice);
%(H_b)s = (CudaNdarray*) CudaNdarray_NewDims(3,dims_H);
cudaMemcpy(CudaNdarray_DEV_DATA(%(H_b)s), CudaNdarray_DEV_DATA(%(Z_b)s),
dims_H[0]*dims_H[1]*dims_H[2]*sizeof(float), cudaMemcpyDeviceToDevice);
}
int y = 0;
for(int x = 0; x < Z_dim[0]; ++x)
{
if(x > 0)
{
//H += Y[x-1]*V_h
affine_y_x(y, x-1, %(Y_f)s, y, x, %(V_f)s, y, x, %(H_f)s);
affine_y_x(y, x-1, %(Y_b)s, y, x, %(V_b)s, y, x, %(H_b)s);
}
float * d_ptr_f = (x == Z_dim[0] - 1) ? CudaNdarray_DEV_DATA(%(d_f)s) : 0;
float * d_ptr_b = (x == Z_dim[0] - 1) ? CudaNdarray_DEV_DATA(%(d_b)s) : 0;
/*float * d_ptr_f = (x == Z_dim[0] - 1) ? CudaNdarray_DEV_DATA(%(d_f)s) : 0;
float * d_ptr_b = (x == Z_dim[0] - 1) ? CudaNdarray_DEV_DATA(%(d_b)s) : 0;
do_lstm(%(H_f)s, %(Y_f)s, %(c_f)s, d_ptr, y, x, %(i_f)s);
d_ptr = (x == Z_dim[0] - 1) ? CudaNdarray_DEV_DATA(%(d_b)s) : 0;
do_lstm(%(H_b)s, %(Y_b)s, %(c_b)s, d_ptr, y, x, %(i_b)s);*/
do_blstm(%(H_f)s, %(H_b)s, %(Y_f)s, %(Y_b)s, %(c_f)s, %(c_b)s, d_ptr_f, d_ptr_b, y, x, %(i_f)s, %(i_b)s);
}
""" % locals()
def grad(self, inputs, output_grads):
Z_f, Z_b, V_f, V_b, c_f, c_b, i_f, i_b = inputs
DY_f, DY_b, DH_f, DH_b, Dd_f, Dd_b = output_grads
Z_f_raw = Z_f.owner.inputs[0].owner.inputs[0]
Z_b_raw = Z_b.owner.inputs[0].owner.inputs[0]
#TODO!!!
V_f_raw = V_f.owner.inputs[0]
V_b_raw = V_b.owner.inputs[0]
c_f_raw = c_f.owner.inputs[0].owner.inputs[0]
c_b_raw = c_b.owner.inputs[0].owner.inputs[0]
i_f_raw = i_f.owner.inputs[0].owner.inputs[0]
i_b_raw = i_b.owner.inputs[0].owner.inputs[0]
#we have to make sure that this in only computed once!
#for this we have to extract the raw variables before conversion to continuous gpu array
#so that theano can merge the nodes
Y_f, Y_b, H_f, H_b, d_f, d_b = BLSTMOpInstance(Z_f_raw, Z_b_raw, V_f_raw, V_b_raw, c_f_raw, c_b_raw, i_f_raw, i_b_raw)
if isinstance(DY_f.type, theano.gradient.DisconnectedType):
DY_f = T.zeros_like(Z_f)
if isinstance(DY_b.type, theano.gradient.DisconnectedType):
DY_b = T.zeros_like(Z_b)
if isinstance(Dd_f.type, theano.gradient.DisconnectedType):
Dd_f = T.zeros_like(c_f)
if isinstance(Dd_b.type, theano.gradient.DisconnectedType):
Dd_b = T.zeros_like(c_b)
DZ_f, DZ_b, DV_f, DV_b, Dc_f, Dc_b = BLSTMOpGradNoInplaceInstance(V_f, V_b, c_f, c_b, i_f, i_b, Dd_f, Dd_b, DY_f, DY_b, Y_f, Y_b, H_f, H_b)
Di_f = theano.gradient.grad_undefined(self, 5, inputs[5], 'cannot diff w.r.t. index')
Di_b = theano.gradient.grad_undefined(self, 6, inputs[6], 'cannot diff w.r.t. index')
return [DZ_f, DZ_b, DV_f, DV_b, Dc_f, Dc_b, Di_f, Di_b]
def infer_shape(self, node, input_shapes):
Z_fs, Z_bs, V_fs, V_bs, c_fs, c_bs, idx_fs, idx_bs = input_shapes
Y_shape = (Z_fs[0], Z_fs[1], Z_fs[2] / 4)
H_shape = (Z_fs[0], Z_fs[1], Z_fs[2])
d_shape = (Z_fs[1], Z_fs[2] / 4)
return [Y_shape, Y_shape, H_shape, H_shape, d_shape, d_shape]
#!!! change this when changing the code!
def c_code_cache_version(self):
return 1, 7
BLSTMOpInstance = BLSTMOp(inplace=False)
BLSTMOpInplaceInstance = BLSTMOp(inplace=True)
BLSTMOpInplaceOpt = OpSub(BLSTMOpInstance, BLSTMOpInplaceInstance)
#hack to avoid begin called twice
if not hasattr(optdb, 'BLSTMOpInplaceOpt_registered'):
optdb.register('BLSTMOpInplaceOpt', theano.gof.TopoOptimizer(BLSTMOpInplaceOpt),
50.0, 'fast_run', 'inplace', 'gpuarray')
optdb.BLSTMOpInplaceOpt_registered = True