forked from gorgonia/tensor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharray.go
More file actions
416 lines (365 loc) · 9.41 KB
/
Copy patharray.go
File metadata and controls
416 lines (365 loc) · 9.41 KB
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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
package tensor
import (
"fmt"
"reflect"
"unsafe"
"github.com/pkg/errors"
"gorgonia.org/tensor/internal/storage"
)
// array is the underlying generic array.
type array struct {
storage.Header // the header - the Go representation (a slice)
t Dtype // the element type
v interface{} // an additional reference to the underlying slice. This is not strictly necessary, but does improve upon anything that calls .Data()
}
// makeHeader makes a array Header
func makeHeader(t Dtype, length int) storage.Header {
size := int(calcMemSize(t, length))
s := make([]byte, size)
return storage.Header{
Ptr: unsafe.Pointer(&s[0]),
L: length,
C: length,
}
}
// makeArray makes an array. The memory allocation is handled by Go
func makeArray(t Dtype, length int) array {
hdr := makeHeader(t, length)
return makeArrayFromHeader(hdr, t)
}
// makeArrayFromHeader makes an array given a header
func makeArrayFromHeader(hdr storage.Header, t Dtype) array {
// build a type of []T
shdr := reflect.SliceHeader{
Data: uintptr(hdr.Ptr),
Len: hdr.L,
Cap: hdr.C,
}
sliceT := reflect.SliceOf(t.Type)
ptr := unsafe.Pointer(&shdr)
val := reflect.Indirect(reflect.NewAt(sliceT, ptr))
return array{
Header: hdr,
t: t,
v: val.Interface(),
}
}
// arrayFromSlice creates an array from a slice. If x is not a slice, it will panic.
func arrayFromSlice(x interface{}) array {
xT := reflect.TypeOf(x)
if xT.Kind() != reflect.Slice {
panic("Expected a slice")
}
elT := xT.Elem()
xV := reflect.ValueOf(x)
ptr := xV.Pointer()
uptr := unsafe.Pointer(ptr)
return array{
Header: storage.Header{
Ptr: uptr,
L: xV.Len(),
C: xV.Cap(),
},
t: Dtype{elT},
v: x,
}
}
func (a *array) fromSlice(x interface{}) {
xT := reflect.TypeOf(x)
if xT.Kind() != reflect.Slice {
panic("Expected a slice")
}
elT := xT.Elem()
xV := reflect.ValueOf(x)
ptr := xV.Pointer()
uptr := unsafe.Pointer(ptr)
a.Ptr = uptr
a.L = xV.Len()
a.C = xV.Cap()
a.t = Dtype{elT}
a.v = x
}
func (a *array) fix() {
if a.v == nil {
shdr := reflect.SliceHeader{
Data: uintptr(a.Ptr),
Len: a.L,
Cap: a.C,
}
sliceT := reflect.SliceOf(a.t.Type)
ptr := unsafe.Pointer(&shdr)
val := reflect.Indirect(reflect.NewAt(sliceT, ptr))
a.v = val.Interface()
}
}
// byteSlice casts the underlying slice into a byte slice. Useful for copying and zeroing, but not much else
func (a array) byteSlice() []byte {
return storage.AsByteSlice(&a.Header, a.t.Type)
}
// sliceInto creates a slice. Instead of returning an array, which would cause a lot of reallocations, sliceInto expects a array to
// already have been created. This allows repetitive actions to be done without having to have many pointless allocation
func (a *array) sliceInto(i, j int, res *array) {
base := uintptr(a.Ptr)
c := a.C
if i < 0 || j < i || j > c {
panic(fmt.Sprintf("Cannot slice %v - index %d:%d is out of bounds", a, i, j))
}
res.L = j - i
res.C = c - i
if c-1 > 0 {
res.Ptr = storage.ElementAt(i, unsafe.Pointer(base), a.t.Size())
} else {
// don't advance pointer
res.Ptr = unsafe.Pointer(base)
}
res.fix()
}
func (a array) slice(start, end int) array {
if end > a.L {
panic("Index out of range")
}
if end < start {
panic("Index out of range")
}
L := end - start
C := a.C - start
var startptr unsafe.Pointer
if a.C-start > 0 {
startptr = storage.ElementAt(start, a.Ptr, a.t.Size())
} else {
startptr = a.Ptr
}
hdr := storage.Header{
Ptr: startptr,
L: L,
C: C,
}
return makeArrayFromHeader(hdr, a.t)
}
// swap swaps the elements i and j in the array
func (a *array) swap(i, j int) {
if a.t == String {
ss := a.hdr().Strings()
ss[i], ss[j] = ss[j], ss[i]
return
}
if !isParameterizedKind(a.t.Kind()) {
switch a.t.Size() {
case 8:
us := a.hdr().Uint64s()
us[i], us[j] = us[j], us[i]
case 4:
us := a.hdr().Uint32s()
us[i], us[j] = us[j], us[i]
case 2:
us := a.hdr().Uint16s()
us[i], us[j] = us[j], us[i]
case 1:
us := a.hdr().Uint8s()
us[i], us[j] = us[j], us[i]
}
return
}
size := int(a.t.Size())
tmp := make([]byte, size)
bs := a.byteSlice()
is := i * size
ie := is + size
js := j * size
je := js + size
copy(tmp, bs[is:ie])
copy(bs[is:ie], bs[js:je])
copy(bs[js:je], tmp)
}
/* *Array is a Memory */
// Uintptr returns the pointer of the first value of the slab
func (t *array) Uintptr() uintptr { return uintptr(t.Ptr) }
// MemSize returns how big the slice is in bytes
func (t *array) MemSize() uintptr { return uintptr(t.L) * t.t.Size() }
// Pointer returns the pointer of the first value of the slab, as an unsafe.Pointer
func (t *array) Pointer() unsafe.Pointer { return t.Ptr }
// Data returns the representation of a slice.
func (a array) Data() interface{} { return a.v }
// Zero zeroes out the underlying array of the *Dense tensor.
func (a array) Zero() {
if a.t.Kind() == reflect.String {
ss := a.Strings()
for i := range ss {
ss[i] = ""
}
return
}
if !isParameterizedKind(a.t.Kind()) {
ba := a.byteSlice()
for i := range ba {
ba[i] = 0
}
return
}
ptr := uintptr(a.Ptr)
for i := 0; i < a.L; i++ {
want := ptr + uintptr(i)*a.t.Size()
val := reflect.NewAt(a.t, unsafe.Pointer(want))
val = reflect.Indirect(val)
val.Set(reflect.Zero(a.t))
}
}
func (a *array) hdr() *storage.Header { return &a.Header }
func (a *array) rtype() reflect.Type { return a.t.Type }
/* MEMORY MOVEMENT STUFF */
// calcMemSize calulates the memory size of an array (given its size)
func calcMemSize(dt Dtype, size int) int64 {
return int64(dt.Size()) * int64(size)
}
// copyArray copies an array.
func copyArray(dst, src *array) int {
if dst.t != src.t {
panic("Cannot copy arrays of different types.")
}
return storage.Copy(dst.t.Type, &dst.Header, &src.Header)
}
func copyArraySliced(dst array, dstart, dend int, src array, sstart, send int) int {
if dst.t != src.t {
panic("Cannot copy arrays of different types.")
}
return storage.CopySliced(dst.t.Type, &dst.Header, dstart, dend, &src.Header, sstart, send)
}
// copyDense copies a DenseTensor
func copyDense(dst, src DenseTensor) int {
if dst.Dtype() != src.Dtype() {
panic("Cannot dopy DenseTensors of different types")
}
if ms, ok := src.(MaskedTensor); ok && ms.IsMasked() {
if md, ok := dst.(MaskedTensor); ok {
dmask := md.Mask()
smask := ms.Mask()
if cap(dmask) < len(smask) {
dmask = make([]bool, len(smask))
copy(dmask, md.Mask())
md.SetMask(dmask)
}
copy(dmask, smask)
}
}
e := src.Engine()
if err := e.Memcpy(dst.arrPtr(), src.arrPtr()); err != nil {
panic(err)
}
return dst.len()
// return copyArray(dst.arr(), src.arr())
}
func copyDenseSliced(dst DenseTensor, dstart, dend int, src DenseTensor, sstart, send int) int {
if dst.Dtype() != src.Dtype() {
panic("Cannot copy DenseTensors of different types")
}
if ms, ok := src.(MaskedTensor); ok && ms.IsMasked() {
if md, ok := dst.(MaskedTensor); ok {
dmask := md.Mask()
smask := ms.Mask()
if cap(dmask) < dend {
dmask = make([]bool, dend)
copy(dmask, md.Mask())
md.SetMask(dmask)
}
copy(dmask[dstart:dend], smask[sstart:send])
}
}
if e := src.Engine(); e != nil {
d := dst.arr().slice(dstart, dend)
s := src.arr().slice(sstart, send)
if err := e.Memcpy(&d, &s); err != nil {
panic(err)
}
return d.Len()
}
return copyArraySliced(dst.arr(), dstart, dend, src.arr(), sstart, send)
}
func copyDenseIter(dst, src DenseTensor, diter, siter Iterator) (int, error) {
if dst.Dtype() != src.Dtype() {
panic("Cannot copy Dense arrays of different types")
}
if !dst.RequiresIterator() && !src.RequiresIterator() {
return copyDense(dst, src), nil
}
if !dst.IsNativelyAccessible() || !src.IsNativelyAccessible() {
return 0, errors.Errorf(inaccessibleData, "copy")
}
if diter == nil {
diter = FlatIteratorFromDense(dst)
}
if siter == nil {
siter = FlatIteratorFromDense(src)
}
if ms, ok := src.(MaskedTensor); ok && ms.IsMasked() {
if md, ok := dst.(MaskedTensor); ok {
dmask := md.Mask()
smask := ms.Mask()
if cap(dmask) < len(smask) {
dmask = make([]bool, len(smask))
copy(dmask, md.Mask())
md.SetMask(dmask)
}
copy(dmask, smask)
}
}
return storage.CopyIter(dst.rtype(), dst.hdr(), src.hdr(), diter, siter), nil
}
func getPointer(a interface{}) unsafe.Pointer {
switch at := a.(type) {
case Memory:
return at.Pointer()
case bool:
return unsafe.Pointer(&at)
case int:
return unsafe.Pointer(&at)
case int8:
return unsafe.Pointer(&at)
case int16:
return unsafe.Pointer(&at)
case int32:
return unsafe.Pointer(&at)
case int64:
return unsafe.Pointer(&at)
case uint:
return unsafe.Pointer(&at)
case uint8:
return unsafe.Pointer(&at)
case uint16:
return unsafe.Pointer(&at)
case uint32:
return unsafe.Pointer(&at)
case uint64:
return unsafe.Pointer(&at)
case float32:
return unsafe.Pointer(&at)
case float64:
return unsafe.Pointer(&at)
case complex64:
return unsafe.Pointer(&at)
case complex128:
return unsafe.Pointer(&at)
case string:
return unsafe.Pointer(&at)
case uintptr:
return unsafe.Pointer(&at)
case unsafe.Pointer:
return at
// POINTERS
case *float32:
return unsafe.Pointer(at)
case *float64:
return unsafe.Pointer(at)
case *complex64:
return unsafe.Pointer(at)
case *complex128:
return unsafe.Pointer(at)
}
panic("Cannot get pointer")
}
func scalarToHeader(a interface{}) *storage.Header {
hdr := borrowHeader()
hdr.Ptr = getPointer(a)
hdr.L = 1
hdr.C = 1
return hdr
}