-
Notifications
You must be signed in to change notification settings - Fork 110
/
MatrixDiagOptions.go
41 lines (33 loc) · 1.02 KB
/
MatrixDiagOptions.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
// Code generated by the FlatBuffers compiler. DO NOT EDIT.
package tflite
import (
flatbuffers "github.com/google/flatbuffers/go"
)
type MatrixDiagOptions struct {
_tab flatbuffers.Table
}
func GetRootAsMatrixDiagOptions(buf []byte, offset flatbuffers.UOffsetT) *MatrixDiagOptions {
n := flatbuffers.GetUOffsetT(buf[offset:])
x := &MatrixDiagOptions{}
x.Init(buf, n+offset)
return x
}
func GetSizePrefixedRootAsMatrixDiagOptions(buf []byte, offset flatbuffers.UOffsetT) *MatrixDiagOptions {
n := flatbuffers.GetUOffsetT(buf[offset+flatbuffers.SizeUint32:])
x := &MatrixDiagOptions{}
x.Init(buf, n+offset+flatbuffers.SizeUint32)
return x
}
func (rcv *MatrixDiagOptions) Init(buf []byte, i flatbuffers.UOffsetT) {
rcv._tab.Bytes = buf
rcv._tab.Pos = i
}
func (rcv *MatrixDiagOptions) Table() flatbuffers.Table {
return rcv._tab
}
func MatrixDiagOptionsStart(builder *flatbuffers.Builder) {
builder.StartObject(0)
}
func MatrixDiagOptionsEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT {
return builder.EndObject()
}