forked from gorgonia/gorgonia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvm_genera.go
469 lines (399 loc) · 10.5 KB
/
vm_genera.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
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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
package gorgonia
import (
"bytes"
"fmt"
"io/ioutil"
"log"
"strings"
"github.com/chewxy/gorgonia/tensor/types"
"github.com/pkg/errors"
)
type lispMachine struct {
g *ExprGraph
q []adInstr // a to-do list of differentiation instructions
// state stuff, to allow continuation
sorted Nodes
fwd int
bwd int
// logging stuff
watchlist Nodes
logger *log.Logger
buf *bytes.Buffer
valueFmt string
tabcount int
logFlags byte
runFlags byte // supposed to go into state stuff. Placed here for better compacting of struct
checkedRoots bool // supposed to go into state stuff.
}
func NewLispMachine(g *ExprGraph, opts ...VMOpt) *lispMachine {
runFlags := (byte(0) | (byte(1) << fwdOnly)) | (1 << bwdOnly) // run fwd and backwards
m := &lispMachine{
g: g,
fwd: -1,
bwd: -1,
valueFmt: "%3.3f",
logFlags: 0x0, // log nothing
runFlags: runFlags, // run only fwd and bwd
}
for _, opt := range opts {
opt(m)
}
return m
}
func (m *lispMachine) logBwd() bool { return (m.logFlags>>bwdOnly)&byte(1) == 1 }
func (m *lispMachine) doLogBwd() { m.logFlags |= byte(1) << bwdOnly }
func (m *lispMachine) dontLogBwd() { m.logFlags &= (^(byte(1) << bwdOnly)) }
func (m *lispMachine) runBwd() bool { return m.runFlags>>bwdOnly&byte(1) == 1 }
func (m *lispMachine) doExecBwd() { m.runFlags |= byte(1) << bwdOnly }
func (m *lispMachine) dontExecBwd() { m.runFlags &= (^(byte(1) << bwdOnly)) }
func (m *lispMachine) logFwd() bool { return (m.logFlags>>fwdOnly)&byte(1) == 1 }
func (m *lispMachine) doLogFwd() { m.logFlags |= byte(1) << fwdOnly }
func (m *lispMachine) dontLogFwd() { m.logFlags &= (^(byte(1) << fwdOnly)) }
func (m *lispMachine) runFwd() bool { return m.runFlags>>fwdOnly&byte(1) == 1 }
func (m *lispMachine) doExecFwd() { m.runFlags |= byte(1) << fwdOnly }
func (m *lispMachine) dontExecFwd() { m.runFlags &= (^(byte(1) << fwdOnly)) }
func (m *lispMachine) watchNaN() bool { return (m.runFlags>>watchNaN)&byte(1) == 1 }
func (m *lispMachine) doWatchNaN() { m.runFlags |= byte(1) << watchNaN }
func (m *lispMachine) dontWatchNaN() { m.runFlags &= (^(byte(1) << watchNaN)) }
func (m *lispMachine) watchInf() bool { return (m.runFlags>>watchInf)&byte(1) == 1 }
func (m *lispMachine) doWatchInf() { m.runFlags |= byte(1) << watchInf }
func (m *lispMachine) dontWatchInf() { m.runFlags &= (^(byte(1) << watchInf)) }
func (m *lispMachine) watchAll() bool { return (m.logFlags>>watchAll)&byte(1) == 1 }
func (m *lispMachine) doWatchAll() { m.logFlags |= (byte(1) << watchAll) }
func (m *lispMachine) dontWatchAll() { m.logFlags &= (^(byte(1) << watchAll)) }
func (m *lispMachine) dealloc() bool { return (m.runFlags>>allocVals)&byte(1) == 1 }
func (m *lispMachine) doDealloc() { m.runFlags |= byte(1) << allocVals }
func (m *lispMachine) dontDealloc() { m.runFlags &= (^(byte(1) << allocVals)) }
// check roots only applies if you want to run a backprop as well
func (m *lispMachine) checkRoots() (err error) {
if !m.checkedRoots && m.runBwd() {
machineLogf("Checking if provided graph is sensible")
machineLogf("roots: %v", m.g.Roots())
for _, root := range m.g.Roots() {
if !root.IsScalar() && !root.isStmt {
err = errors.Errorf("Expected cost to be a scalar. Got %v with shape %v instead", root, root.Shape())
ioutil.WriteFile("err.dot", []byte(root.RestrictedToDot(2, 10)), 0644)
return
}
}
}
return
}
func (m *lispMachine) prepGraph() (err error) {
if m.sorted == nil {
if m.sorted, err = Sort(m.g); err != nil {
return errors.Wrap(err, sortFail)
}
m.fwd = len(m.sorted) - 1
}
return
}
func (m *lispMachine) forward() (err error) {
if m.fwd < 0 {
return nil // or err?
}
n := m.sorted[m.fwd]
m.watchedLogf("n: %v (%x)", n, n.Hashcode())
m.enterLoggingContext()
defer m.leaveLoggingContext()
if !n.isStmt {
switch {
case n.isArg():
machineLogf("Unit() on input node")
if err = n.bind(dvUnit(n.boundTo)); err != nil {
return errors.Wrap(err, bindFail)
}
return
case n.isRandom():
machineLogf("binding value of random node")
var v Value
if v, err = n.op.Do(); err != nil {
return errors.Wrapf(err, execFail, n.op, n)
}
// we wrap it in a dualValue, but don't allocate anything for the d
if err = n.bind(dvUnit0(v)); err != nil {
return errors.Wrap(err, bindFail)
}
return
default:
// do nothihng
}
m.watchedLogf(m.valueFmt, n.boundTo)
}
// other wise it's time to execute the op
m.watchedLogf("execute Op")
op := n.op
var output *dualValue
inputs := make([]*dualValue, len(n.children))
for i, child := range n.children {
dv := child.boundTo.(*dualValue)
inputs[i] = dv
}
m.watchedLogf("Before:")
m.watchedLogf(m.valueFmt, n.boundTo)
switch {
case (m.g.roots.Contains(n) || n.isRoot()) && !n.isStmt:
machineLogf("Applying op %v to root", op)
if n.boundTo == nil {
machineLogf("dvBindVar")
if output, err = dvBindVar(op, inputs); err != nil {
return errors.Wrapf(err, execFail, op, n)
}
if err = n.bind(output); err != nil {
return errors.Wrap(err, bindFail)
}
} else {
machineLogf("dvBindVar0")
dv, ok := n.boundTo.(*dualValue)
if !ok {
panic(fmt.Sprintf("n not dual value %v", n))
}
if err = dvBindVar0(op, dv, inputs); err != nil {
return errors.Wrapf(err, execFail, op, n)
}
}
case n.isStmt:
machineLogf("ReadOp: %v ", op)
switch ot := n.op.(type) {
case readOp:
childVal := n.children[0].boundTo
if dv, ok := childVal.(*dualValue); ok {
*ot.into = dv.Value
} else {
*ot.into = childVal
}
}
case n.boundTo == nil:
machineLogf("Fresh, unencountered node, so dvBind(%v)", op)
machineLogf("Inputs")
enterLoggingContext()
for i, in := range inputs {
if inT, ok := in.Value.(types.Tensor); ok {
machineLogf("%d; %v", i, inT.Info())
}
}
leaveLoggingContext()
if output, err = dvBind(op, inputs); err != nil {
return errors.Wrapf(err, execFail, op, n)
}
if err = n.bind(output); err != nil {
return errors.Wrap(err, bindFail)
}
default:
m.logf("bind(%v) with as much reuse as possible", op)
// reuse as much as possible
output := dvUnit(n.boundTo)
if err = n.bind(output); err != nil {
return errors.Wrap(err, bindFail)
}
err = dvBind0(op, output, inputs)
if _, ok := errors.Cause(err).(AutoDiffError); ok {
err = nil
} else if err != nil {
return errors.Wrapf(err, execFail, op, n)
}
}
m.watchedLogf("After:")
m.watchedLogf(m.valueFmt, n.boundTo)
if aop, ok := op.(ADOp); ok && m.runBwd() {
instr := adInstr{
ADOp: aop,
inputs: n.children,
output: n,
}
m.q = append(m.q, instr)
}
if m.watchNaN() && !n.isStmt {
if hasNaN(n.boundTo) {
return errors.New("NaN found in value")
}
}
return
}
func (m *lispMachine) backward() (err error) {
if m.bwd < 0 {
return errors.New("no backprop queue")
}
instr := m.q[m.bwd]
m.watchedLogf("Differentiating op %v. Output: %v (%x)", instr, instr.output, instr.output.Hashcode())
m.enterLoggingContext()
defer m.leaveLoggingContext()
m.watchedLogf("Inputs: %v", instr.inputs)
m.enterLoggingContext()
for _, in := range instr.inputs {
m.watchedLogf(m.valueFmt, in.boundTo.(*dualValue).d)
}
m.leaveLoggingContext()
// actual differentiation
if err = instr.do(); err != nil {
return errors.Wrapf(err, autodiffFail, instr.ADOp)
}
m.watchedLogf("After:")
m.enterLoggingContext()
for _, in := range instr.inputs {
m.watchedLogf(m.valueFmt, in.boundTo.(*dualValue).d)
}
m.leaveLoggingContext()
if m.watchNaN() {
if hasNaN(instr.output.boundTo) {
return errors.New("NaN found in value")
}
for _, in := range instr.inputs {
if hasNaN(in.boundTo) {
return errors.New("NaN found in value")
}
}
}
return
}
func (m *lispMachine) RunAll() (err error) {
if err = m.prepGraph(); err != nil {
return errors.Wrap(err, "Could not prepGraph()")
}
if err = m.checkRoots(); err != nil {
return errors.Wrap(err, "Could not checkRoots()")
}
if !m.runFwd() {
goto backward
}
for err = nil; err == nil && m.fwd >= 0; m.fwd-- {
err = m.forward()
}
if err != nil {
return
}
backward:
if !m.runBwd() {
return nil
}
if m.bwd < 0 {
m.bwd = len(m.q) - 1
}
for err = nil; err == nil && m.bwd >= 0; m.bwd-- {
err = m.backward()
}
return
}
func (m *lispMachine) Free() {
if m.dealloc() {
for _, n := range m.sorted {
m.logf("dealloc n; %v %x %p", n, n.Hashcode(), n)
if !n.isInput() {
n.unbind()
m.logf("OK")
}
}
}
}
func (m *lispMachine) Reset() {
m.fwd = len(m.sorted) - 1
m.bwd = len(m.q) - 1
}
func (m *lispMachine) LastRun() (n *Node, backprop bool) {
if m.fwd < 0 && m.runBwd() {
goto backward
} else if !m.runBwd() {
n = m.sorted[0] // last to run
return
} else {
n = m.sorted[m.fwd]
return
}
backward:
backprop = true
if m.bwd < 0 {
n = m.q[0].output
return
}
n = m.q[m.bwd].output
return
}
func (m *lispMachine) watchedLogf(format string, attrs ...interface{}) {
if !m.logFwd() && !DEBUG {
goto backwards
}
if m.fwd >= 0 {
n := m.sorted[m.fwd]
if m.watchlist.Contains(n) || m.watchAll() || DEBUG {
m.logf(format, attrs...)
}
return
}
backwards:
if !m.logBwd() && !DEBUG {
return
}
if m.bwd >= 0 {
instr := m.q[m.bwd]
write := m.watchlist.Contains(instr.output)
if !write {
for _, in := range instr.inputs {
if m.watchlist.Contains(in) {
write = true
break
}
}
}
if write || m.watchAll() || DEBUG {
m.logf(format, attrs...)
}
}
}
func (m *lispMachine) logf(format string, attrs ...interface{}) {
switch {
case machineDev, autodiffDev:
if machineDev {
machineLogf(format, attrs...)
} else {
autodiffLogf(format, attrs...)
}
if m.logger != nil {
goto loggercase
}
break
loggercase:
fallthrough
case m.logger != nil:
s := fmt.Sprintf(format, attrs...)
s = strings.Replace(s, "\n", m.buf.String(), -1)
m.logger.Println(s)
}
}
func (m *lispMachine) enterLoggingContext() {
if DEBUG {
enterLoggingContext()
}
m.tabcount++
if m.logger != nil {
reps := strings.Repeat("\t", m.tabcount)
m.logger.SetPrefix(reps)
m.buf.Reset()
m.buf.WriteString("\n")
m.buf.WriteString(reps)
}
}
func (m *lispMachine) leaveLoggingContext() {
if DEBUG {
leaveLoggingContext()
}
m.tabcount--
if m.tabcount < 0 {
m.tabcount = 0
}
if m.logger != nil {
reps := strings.Repeat("\t", m.tabcount)
m.logger.SetPrefix(reps)
m.buf.Reset()
m.buf.WriteString("\n")
m.buf.WriteString(reps)
}
}
// adInstr is an autodifferentiation instruction
type adInstr struct {
ADOp
inputs Nodes
output *Node
}
func (instr adInstr) do() error {
return instr.ADOp.DoDiff(instr.inputs, instr.output)
}