forked from gorgonia/gorgonia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease.go
41 lines (32 loc) · 1.27 KB
/
release.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
// +build !debug
package gorgonia
const DEBUG = false
const (
compileDev = false
shapeInferenceDev = false
typeSystemDev = false
symdiffDev = false
autodiffDev = false
machineDev = false
stabilizationDev = false
)
var READMEMSTATS = true
var TABCOUNT uint32 = 0
func tabcount() int { return 0 }
func enterLoggingContext() {}
func leaveLoggingContext() {}
func logf(format string, others ...interface{}) {}
func compileLogf(format string, attrs ...interface{}) {}
func shapeLogf(format string, attrs ...interface{}) {}
func typeSysLogf(format string, attrs ...interface{}) {}
func symdiffLogf(format string, attrs ...interface{}) {}
func autodiffLogf(format string, attrs ...interface{}) {}
func machineLogf(format string, attrs ...interface{}) {}
func stabLogf(format string, attrs ...interface{}) {}
func solverLogf(format string, attrs ...interface{}) {}
func recoverFrom(format string, attrs ...interface{}) {}
func logCompileState(name string, g *ExprGraph, df *dataflow) {}
func incrCC() {}
func incrEC() {}
func incrNN() {}
func GraphCollisionStats() (int, int, int) { return -1, -1, -1 }