forked from rai-project/tensorflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
versions.pb.go
491 lines (472 loc) · 11.8 KB
/
versions.pb.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
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
// Code generated by protoc-gen-gogo. DO NOT EDIT.
// source: versions.proto
package tensorflow
import (
fmt "fmt"
proto "github.com/gogo/protobuf/proto"
io "io"
math "math"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package
// Version information for a piece of serialized data
//
// There are different types of versions for each type of data
// (GraphDef, etc.), but they all have the same common shape
// described here.
//
// Each consumer has "consumer" and "min_producer" versions (specified
// elsewhere). A consumer is allowed to consume this data if
//
// producer >= min_producer
// consumer >= min_consumer
// consumer not in bad_consumers
//
type VersionDef struct {
// The version of the code that produced this data.
Producer int32 `protobuf:"varint,1,opt,name=producer,proto3" json:"producer,omitempty"`
// Any consumer below this version is not allowed to consume this data.
MinConsumer int32 `protobuf:"varint,2,opt,name=min_consumer,json=minConsumer,proto3" json:"min_consumer,omitempty"`
// Specific consumer versions which are disallowed (e.g. due to bugs).
BadConsumers []int32 `protobuf:"varint,3,rep,packed,name=bad_consumers,json=badConsumers,proto3" json:"bad_consumers,omitempty"`
}
func (m *VersionDef) Reset() { *m = VersionDef{} }
func (m *VersionDef) String() string { return proto.CompactTextString(m) }
func (*VersionDef) ProtoMessage() {}
func (*VersionDef) Descriptor() ([]byte, []int) {
return fileDescriptor_b6c3683021652672, []int{0}
}
func (m *VersionDef) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *VersionDef) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_VersionDef.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalTo(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *VersionDef) XXX_Merge(src proto.Message) {
xxx_messageInfo_VersionDef.Merge(m, src)
}
func (m *VersionDef) XXX_Size() int {
return m.Size()
}
func (m *VersionDef) XXX_DiscardUnknown() {
xxx_messageInfo_VersionDef.DiscardUnknown(m)
}
var xxx_messageInfo_VersionDef proto.InternalMessageInfo
func (m *VersionDef) GetProducer() int32 {
if m != nil {
return m.Producer
}
return 0
}
func (m *VersionDef) GetMinConsumer() int32 {
if m != nil {
return m.MinConsumer
}
return 0
}
func (m *VersionDef) GetBadConsumers() []int32 {
if m != nil {
return m.BadConsumers
}
return nil
}
func init() {
proto.RegisterType((*VersionDef)(nil), "tensorflow.VersionDef")
}
func init() { proto.RegisterFile("versions.proto", fileDescriptor_b6c3683021652672) }
var fileDescriptor_b6c3683021652672 = []byte{
// 226 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x2b, 0x4b, 0x2d, 0x2a,
0xce, 0xcc, 0xcf, 0x2b, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x2a, 0x49, 0xcd, 0x2b,
0xce, 0x2f, 0x4a, 0xcb, 0xc9, 0x2f, 0x57, 0x2a, 0xe0, 0xe2, 0x0a, 0x83, 0xc8, 0xba, 0xa4, 0xa6,
0x09, 0x49, 0x71, 0x71, 0x14, 0x14, 0xe5, 0xa7, 0x94, 0x26, 0xa7, 0x16, 0x49, 0x30, 0x2a, 0x30,
0x6a, 0xb0, 0x06, 0xc1, 0xf9, 0x42, 0x8a, 0x5c, 0x3c, 0xb9, 0x99, 0x79, 0xf1, 0xc9, 0xf9, 0x79,
0xc5, 0xa5, 0xb9, 0xa9, 0x45, 0x12, 0x4c, 0x60, 0x79, 0xee, 0xdc, 0xcc, 0x3c, 0x67, 0xa8, 0x90,
0x90, 0x32, 0x17, 0x6f, 0x52, 0x62, 0x0a, 0x5c, 0x49, 0xb1, 0x04, 0xb3, 0x02, 0xb3, 0x06, 0x6b,
0x10, 0x4f, 0x52, 0x62, 0x0a, 0x4c, 0x4d, 0xb1, 0x53, 0xd6, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e,
0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, 0xb1, 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37,
0x1e, 0xcb, 0x31, 0x70, 0x49, 0xe4, 0x17, 0xa5, 0xeb, 0x21, 0xdc, 0xa6, 0x97, 0x56, 0x94, 0x98,
0x9b, 0x5a, 0x9e, 0x5f, 0x94, 0xed, 0xc4, 0x07, 0x75, 0x63, 0x71, 0x00, 0xc8, 0x03, 0xc5, 0x01,
0x8c, 0x51, 0x8a, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0x45, 0x89,
0x99, 0xba, 0x05, 0x45, 0xf9, 0x59, 0xa9, 0xc9, 0x25, 0xfa, 0x08, 0xed, 0x3f, 0x18, 0x19, 0x93,
0xd8, 0xc0, 0x1e, 0x36, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0x4e, 0x3e, 0x57, 0x51, 0x02, 0x01,
0x00, 0x00,
}
func (m *VersionDef) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalTo(dAtA)
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *VersionDef) MarshalTo(dAtA []byte) (int, error) {
var i int
_ = i
var l int
_ = l
if m.Producer != 0 {
dAtA[i] = 0x8
i++
i = encodeVarintVersions(dAtA, i, uint64(m.Producer))
}
if m.MinConsumer != 0 {
dAtA[i] = 0x10
i++
i = encodeVarintVersions(dAtA, i, uint64(m.MinConsumer))
}
if len(m.BadConsumers) > 0 {
dAtA2 := make([]byte, len(m.BadConsumers)*10)
var j1 int
for _, num1 := range m.BadConsumers {
num := uint64(num1)
for num >= 1<<7 {
dAtA2[j1] = uint8(uint64(num)&0x7f | 0x80)
num >>= 7
j1++
}
dAtA2[j1] = uint8(num)
j1++
}
dAtA[i] = 0x1a
i++
i = encodeVarintVersions(dAtA, i, uint64(j1))
i += copy(dAtA[i:], dAtA2[:j1])
}
return i, nil
}
func encodeVarintVersions(dAtA []byte, offset int, v uint64) int {
for v >= 1<<7 {
dAtA[offset] = uint8(v&0x7f | 0x80)
v >>= 7
offset++
}
dAtA[offset] = uint8(v)
return offset + 1
}
func (m *VersionDef) Size() (n int) {
if m == nil {
return 0
}
var l int
_ = l
if m.Producer != 0 {
n += 1 + sovVersions(uint64(m.Producer))
}
if m.MinConsumer != 0 {
n += 1 + sovVersions(uint64(m.MinConsumer))
}
if len(m.BadConsumers) > 0 {
l = 0
for _, e := range m.BadConsumers {
l += sovVersions(uint64(e))
}
n += 1 + sovVersions(uint64(l)) + l
}
return n
}
func sovVersions(x uint64) (n int) {
for {
n++
x >>= 7
if x == 0 {
break
}
}
return n
}
func sozVersions(x uint64) (n int) {
return sovVersions(uint64((x << 1) ^ uint64((int64(x) >> 63))))
}
func (m *VersionDef) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowVersions
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: VersionDef: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: VersionDef: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Producer", wireType)
}
m.Producer = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowVersions
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.Producer |= int32(b&0x7F) << shift
if b < 0x80 {
break
}
}
case 2:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field MinConsumer", wireType)
}
m.MinConsumer = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowVersions
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.MinConsumer |= int32(b&0x7F) << shift
if b < 0x80 {
break
}
}
case 3:
if wireType == 0 {
var v int32
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowVersions
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
v |= int32(b&0x7F) << shift
if b < 0x80 {
break
}
}
m.BadConsumers = append(m.BadConsumers, v)
} else if wireType == 2 {
var packedLen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowVersions
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
packedLen |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
if packedLen < 0 {
return ErrInvalidLengthVersions
}
postIndex := iNdEx + packedLen
if postIndex < 0 {
return ErrInvalidLengthVersions
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
var elementCount int
var count int
for _, integer := range dAtA[iNdEx:postIndex] {
if integer < 128 {
count++
}
}
elementCount = count
if elementCount != 0 && len(m.BadConsumers) == 0 {
m.BadConsumers = make([]int32, 0, elementCount)
}
for iNdEx < postIndex {
var v int32
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowVersions
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
v |= int32(b&0x7F) << shift
if b < 0x80 {
break
}
}
m.BadConsumers = append(m.BadConsumers, v)
}
} else {
return fmt.Errorf("proto: wrong wireType = %d for field BadConsumers", wireType)
}
default:
iNdEx = preIndex
skippy, err := skipVersions(dAtA[iNdEx:])
if err != nil {
return err
}
if skippy < 0 {
return ErrInvalidLengthVersions
}
if (iNdEx + skippy) < 0 {
return ErrInvalidLengthVersions
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func skipVersions(dAtA []byte) (n int, err error) {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return 0, ErrIntOverflowVersions
}
if iNdEx >= l {
return 0, io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= (uint64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
wireType := int(wire & 0x7)
switch wireType {
case 0:
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return 0, ErrIntOverflowVersions
}
if iNdEx >= l {
return 0, io.ErrUnexpectedEOF
}
iNdEx++
if dAtA[iNdEx-1] < 0x80 {
break
}
}
return iNdEx, nil
case 1:
iNdEx += 8
return iNdEx, nil
case 2:
var length int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return 0, ErrIntOverflowVersions
}
if iNdEx >= l {
return 0, io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
length |= (int(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
if length < 0 {
return 0, ErrInvalidLengthVersions
}
iNdEx += length
if iNdEx < 0 {
return 0, ErrInvalidLengthVersions
}
return iNdEx, nil
case 3:
for {
var innerWire uint64
var start int = iNdEx
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return 0, ErrIntOverflowVersions
}
if iNdEx >= l {
return 0, io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
innerWire |= (uint64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
innerWireType := int(innerWire & 0x7)
if innerWireType == 4 {
break
}
next, err := skipVersions(dAtA[start:])
if err != nil {
return 0, err
}
iNdEx = start + next
if iNdEx < 0 {
return 0, ErrInvalidLengthVersions
}
}
return iNdEx, nil
case 4:
return iNdEx, nil
case 5:
iNdEx += 4
return iNdEx, nil
default:
return 0, fmt.Errorf("proto: illegal wireType %d", wireType)
}
}
panic("unreachable")
}
var (
ErrInvalidLengthVersions = fmt.Errorf("proto: negative length found during unmarshaling")
ErrIntOverflowVersions = fmt.Errorf("proto: integer overflow")
)