-
Notifications
You must be signed in to change notification settings - Fork 110
/
L2NormOptions.go
56 lines (46 loc) · 1.51 KB
/
L2NormOptions.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
// Code generated by the FlatBuffers compiler. DO NOT EDIT.
package tflite
import (
flatbuffers "github.com/google/flatbuffers/go"
)
type L2NormOptions struct {
_tab flatbuffers.Table
}
func GetRootAsL2NormOptions(buf []byte, offset flatbuffers.UOffsetT) *L2NormOptions {
n := flatbuffers.GetUOffsetT(buf[offset:])
x := &L2NormOptions{}
x.Init(buf, n+offset)
return x
}
func GetSizePrefixedRootAsL2NormOptions(buf []byte, offset flatbuffers.UOffsetT) *L2NormOptions {
n := flatbuffers.GetUOffsetT(buf[offset+flatbuffers.SizeUint32:])
x := &L2NormOptions{}
x.Init(buf, n+offset+flatbuffers.SizeUint32)
return x
}
func (rcv *L2NormOptions) Init(buf []byte, i flatbuffers.UOffsetT) {
rcv._tab.Bytes = buf
rcv._tab.Pos = i
}
func (rcv *L2NormOptions) Table() flatbuffers.Table {
return rcv._tab
}
func (rcv *L2NormOptions) FusedActivationFunction() ActivationFunctionType {
o := flatbuffers.UOffsetT(rcv._tab.Offset(4))
if o != 0 {
return ActivationFunctionType(rcv._tab.GetInt8(o + rcv._tab.Pos))
}
return 0
}
func (rcv *L2NormOptions) MutateFusedActivationFunction(n ActivationFunctionType) bool {
return rcv._tab.MutateInt8Slot(4, int8(n))
}
func L2NormOptionsStart(builder *flatbuffers.Builder) {
builder.StartObject(1)
}
func L2NormOptionsAddFusedActivationFunction(builder *flatbuffers.Builder, fusedActivationFunction ActivationFunctionType) {
builder.PrependInt8Slot(0, int8(fusedActivationFunction), 0)
}
func L2NormOptionsEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT {
return builder.EndObject()
}