forked from dereklstinson/gocudnn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcudnnSpatial.go
242 lines (216 loc) · 6.69 KB
/
cudnnSpatial.go
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
package gocudnn
/*
#include <cudnn.h>
*/
import "C"
import (
"runtime"
"unsafe"
"github.com/dereklstinson/cutil"
)
//SpatialTransformerD holdes the spatial descriptor
type SpatialTransformerD struct {
descriptor C.cudnnSpatialTransformerDescriptor_t
dims C.int
gogc bool
}
//GridGeneratorForward This function generates a grid of coordinates in the input tensor corresponding to each pixel from the output tensor.
func (s *SpatialTransformerD) GridGeneratorForward(
handle *Handle,
theta cutil.Mem, //Input. Affine transformation matrix. It should be of size n*2*3 for a 2d transformation, n is the number of images.
grid cutil.Mem, /*Output. A grid of coordinates. It is of size n*h*w*2 for a 2d transformation, where n,
h, w is specified in stDesc . In the 4th dimension, the first coordinate is x, and the
second coordinate is y*/
) error {
return Status(C.cudnnSpatialTfGridGeneratorForward(
handle.x,
s.descriptor,
theta.Ptr(),
grid.Ptr(),
)).error("SpatialTfGridGeneratorForward")
}
//GridGeneratorForwardUS is like GridGeneratorForward but uses unsafe.Pointer instead of cutil.Mem
func (s *SpatialTransformerD) GridGeneratorForwardUS(
handle *Handle,
theta unsafe.Pointer, //Input. Affine transformation matrix. It should be of size n*2*3 for a 2d transformation, n is the number of images.
grid unsafe.Pointer, /*Output. A grid of coordinates. It is of size n*h*w*2 for a 2d transformation, where n,
h, w is specified in stDesc . In the 4th dimension, the first coordinate is x, and the
second coordinate is y*/
) error {
return Status(C.cudnnSpatialTfGridGeneratorForward(
handle.x,
s.descriptor,
theta,
grid,
)).error("SpatialTfGridGeneratorForward")
}
//GridGeneratorBackward - This function generates a grid of coordinates in the input tensor corresponding to each pixel from the output tensor.
func (s *SpatialTransformerD) GridGeneratorBackward(
handle *Handle,
grid cutil.Mem,
theta cutil.Mem,
) error {
return Status(C.cudnnSpatialTfGridGeneratorBackward(
handle.x,
s.descriptor,
grid.Ptr(),
theta.Ptr(),
)).error("SpatialTfGridGeneratorBackward")
}
//GridGeneratorBackwardUS is like GridGeneratorBackward but uses unsafe.Pointer instead of cutil.Mem
func (s *SpatialTransformerD) GridGeneratorBackwardUS(
handle *Handle,
grid unsafe.Pointer,
theta unsafe.Pointer,
) error {
return Status(C.cudnnSpatialTfGridGeneratorBackward(
handle.x,
s.descriptor,
grid,
theta,
)).error("SpatialTfGridGeneratorBackward")
}
//SamplerForward performs the spatialtfsampleforward
func (s *SpatialTransformerD) SamplerForward(
handle *Handle,
alpha float64,
xD *TensorD, x cutil.Mem,
grid cutil.Mem,
beta float64,
yD *TensorD, y cutil.Mem,
) error {
a := cscalarbydatatype(xD.dtype, alpha)
b := cscalarbydatatype(yD.dtype, beta)
return Status(C.cudnnSpatialTfSamplerForward(
handle.x,
s.descriptor,
a.CPtr(),
xD.descriptor,
x.Ptr(),
grid.Ptr(),
b.CPtr(),
yD.descriptor,
y.Ptr(),
)).error("SpatialTfSamplerForward")
}
//SamplerForwardUS is like SamplerForward but uses unsafe.Pointer instead of cutil.Mem
func (s *SpatialTransformerD) SamplerForwardUS(
handle *Handle,
alpha float64,
xD *TensorD, x unsafe.Pointer,
grid unsafe.Pointer,
beta float64,
yD *TensorD, y unsafe.Pointer,
) error {
a := cscalarbydatatype(xD.dtype, alpha)
b := cscalarbydatatype(yD.dtype, beta)
return Status(C.cudnnSpatialTfSamplerForward(
handle.x,
s.descriptor,
a.CPtr(),
xD.descriptor, x,
grid,
b.CPtr(),
yD.descriptor, y,
)).error("SpatialTfSamplerForward")
}
//SamplerBackward does the spatial Tranform Sample Backward
func (s *SpatialTransformerD) SamplerBackward(
handle *Handle,
alpha float64,
xD *TensorD, x cutil.Mem,
beta float64,
dxD *TensorD, dx cutil.Mem,
alphaDgrid float64,
dyD *TensorD, dy cutil.Mem,
grid cutil.Mem,
betaDgrid float64,
dGrid cutil.Mem,
) error {
a := cscalarbydatatype(dyD.dtype, alpha)
b := cscalarbydatatype(dxD.dtype, beta)
ad := cscalarbydatatype(xD.dtype, alphaDgrid)
bd := cscalarbydatatype(dxD.dtype, betaDgrid)
return Status(C.cudnnSpatialTfSamplerBackward(
handle.x,
s.descriptor,
a.CPtr(),
xD.descriptor, x.Ptr(),
b.CPtr(),
dxD.descriptor, dx.Ptr(),
ad.CPtr(),
dyD.descriptor, dy.Ptr(),
grid.Ptr(),
bd.CPtr(),
dGrid.Ptr(),
)).error("SpatialTfSamplerBackward")
}
//SamplerBackwardUS is like SamplerBackward but uses unsafe.Pointer instead of cutil.Mem
func (s *SpatialTransformerD) SamplerBackwardUS(
handle *Handle,
alpha float64,
xD *TensorD, x unsafe.Pointer,
beta float64,
dxD *TensorD, dx unsafe.Pointer,
alphaDgrid float64,
dyD *TensorD, dy unsafe.Pointer,
grid unsafe.Pointer,
betaDgrid float64,
dGrid unsafe.Pointer,
) error {
a := cscalarbydatatype(dyD.dtype, alpha)
b := cscalarbydatatype(dxD.dtype, beta)
ad := cscalarbydatatype(xD.dtype, alphaDgrid)
bd := cscalarbydatatype(dxD.dtype, betaDgrid)
return Status(C.cudnnSpatialTfSamplerBackward(
handle.x,
s.descriptor,
a.CPtr(),
xD.descriptor, x,
b.CPtr(),
dxD.descriptor, dx,
ad.CPtr(),
dyD.descriptor, dy,
grid,
bd.CPtr(),
dGrid,
)).error("SpatialTfSamplerBackward")
}
/* APIs for spatial transformer network*/
//SamplerType is used for flags
type SamplerType C.cudnnSamplerType_t
//Bilinear sets s to SamplerType(C.CUDNN_SAMPLER_BILINEAR) and returns new value of s
func (s *SamplerType) Bilinear() SamplerType { *s = SamplerType(C.CUDNN_SAMPLER_BILINEAR); return *s }
func (s SamplerType) c() C.cudnnSamplerType_t { return C.cudnnSamplerType_t(s) }
//CreateSpatialTransformerDescriptor creates the spacial tesnor
func CreateSpatialTransformerDescriptor() (*SpatialTransformerD, error) {
x := new(SpatialTransformerD)
err := Status(C.cudnnCreateSpatialTransformerDescriptor(&x.descriptor)).error("NewSpatialTransformerNdDescriptor-create")
if setfinalizer {
runtime.SetFinalizer(x, cudnnDestroySpatialTransformerDescriptor)
}
return x, err
}
//SetND sets spacial to nd descriptor.
func (s *SpatialTransformerD) SetND(sampler SamplerType, data DataType, dimA []int32) error {
dims := C.int(len(dimA))
cdimA := int32Tocint(dimA)
return Status(C.cudnnSetSpatialTransformerNdDescriptor(
s.descriptor,
sampler.c(),
data.c(),
dims,
&cdimA[0],
)).error("NewSpatialTransformerNdDescriptor-Set")
}
//Destroy destroys the spatial Transformer Desctiptor. If GC is enable this function won't delete transformer. It will only return nil
//Since gc is automatically enabled this function is not functional.
func (s *SpatialTransformerD) Destroy() error {
if s.gogc || setfinalizer {
return nil
}
return cudnnDestroySpatialTransformerDescriptor(s)
}
func cudnnDestroySpatialTransformerDescriptor(s *SpatialTransformerD) error {
return Status(C.cudnnDestroySpatialTransformerDescriptor(s.descriptor)).error("DestroyDescriptor")
}