-
Notifications
You must be signed in to change notification settings - Fork 110
/
SVDFOptions.go
86 lines (72 loc) · 2.29 KB
/
SVDFOptions.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
// Code generated by the FlatBuffers compiler. DO NOT EDIT.
package tflite
import (
flatbuffers "github.com/google/flatbuffers/go"
)
type SVDFOptions struct {
_tab flatbuffers.Table
}
func GetRootAsSVDFOptions(buf []byte, offset flatbuffers.UOffsetT) *SVDFOptions {
n := flatbuffers.GetUOffsetT(buf[offset:])
x := &SVDFOptions{}
x.Init(buf, n+offset)
return x
}
func GetSizePrefixedRootAsSVDFOptions(buf []byte, offset flatbuffers.UOffsetT) *SVDFOptions {
n := flatbuffers.GetUOffsetT(buf[offset+flatbuffers.SizeUint32:])
x := &SVDFOptions{}
x.Init(buf, n+offset+flatbuffers.SizeUint32)
return x
}
func (rcv *SVDFOptions) Init(buf []byte, i flatbuffers.UOffsetT) {
rcv._tab.Bytes = buf
rcv._tab.Pos = i
}
func (rcv *SVDFOptions) Table() flatbuffers.Table {
return rcv._tab
}
func (rcv *SVDFOptions) Rank() int32 {
o := flatbuffers.UOffsetT(rcv._tab.Offset(4))
if o != 0 {
return rcv._tab.GetInt32(o + rcv._tab.Pos)
}
return 0
}
func (rcv *SVDFOptions) MutateRank(n int32) bool {
return rcv._tab.MutateInt32Slot(4, n)
}
func (rcv *SVDFOptions) FusedActivationFunction() ActivationFunctionType {
o := flatbuffers.UOffsetT(rcv._tab.Offset(6))
if o != 0 {
return ActivationFunctionType(rcv._tab.GetInt8(o + rcv._tab.Pos))
}
return 0
}
func (rcv *SVDFOptions) MutateFusedActivationFunction(n ActivationFunctionType) bool {
return rcv._tab.MutateInt8Slot(6, int8(n))
}
func (rcv *SVDFOptions) AsymmetricQuantizeInputs() bool {
o := flatbuffers.UOffsetT(rcv._tab.Offset(8))
if o != 0 {
return rcv._tab.GetBool(o + rcv._tab.Pos)
}
return false
}
func (rcv *SVDFOptions) MutateAsymmetricQuantizeInputs(n bool) bool {
return rcv._tab.MutateBoolSlot(8, n)
}
func SVDFOptionsStart(builder *flatbuffers.Builder) {
builder.StartObject(3)
}
func SVDFOptionsAddRank(builder *flatbuffers.Builder, rank int32) {
builder.PrependInt32Slot(0, rank, 0)
}
func SVDFOptionsAddFusedActivationFunction(builder *flatbuffers.Builder, fusedActivationFunction ActivationFunctionType) {
builder.PrependInt8Slot(1, int8(fusedActivationFunction), 0)
}
func SVDFOptionsAddAsymmetricQuantizeInputs(builder *flatbuffers.Builder, asymmetricQuantizeInputs bool) {
builder.PrependBoolSlot(2, asymmetricQuantizeInputs, false)
}
func SVDFOptionsEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT {
return builder.EndObject()
}