arrow_ipc/gen/
Tensor.rs

1// Licensed to the Apache Software Foundation (ASF) under one
2// or more contributor license agreements.  See the NOTICE file
3// distributed with this work for additional information
4// regarding copyright ownership.  The ASF licenses this file
5// to you under the Apache License, Version 2.0 (the
6// "License"); you may not use this file except in compliance
7// with the License.  You may obtain a copy of the License at
8//
9//   http://www.apache.org/licenses/LICENSE-2.0
10//
11// Unless required by applicable law or agreed to in writing,
12// software distributed under the License is distributed on an
13// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14// KIND, either express or implied.  See the License for the
15// specific language governing permissions and limitations
16// under the License.
17
18#![allow(dead_code)]
19#![allow(unused_imports)]
20
21use crate::gen::Schema::*;
22use flatbuffers::EndianScalar;
23use std::{cmp::Ordering, mem};
24// automatically generated by the FlatBuffers compiler, do not modify
25
26pub enum TensorDimOffset {}
27#[derive(Copy, Clone, PartialEq)]
28
29/// ----------------------------------------------------------------------
30/// Data structures for dense tensors
31/// Shape data for a single axis in a tensor
32pub struct TensorDim<'a> {
33    pub _tab: flatbuffers::Table<'a>,
34}
35
36impl<'a> flatbuffers::Follow<'a> for TensorDim<'a> {
37    type Inner = TensorDim<'a>;
38    #[inline]
39    unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner {
40        Self {
41            _tab: flatbuffers::Table::new(buf, loc),
42        }
43    }
44}
45
46impl<'a> TensorDim<'a> {
47    pub const VT_SIZE_: flatbuffers::VOffsetT = 4;
48    pub const VT_NAME: flatbuffers::VOffsetT = 6;
49
50    #[inline]
51    pub unsafe fn init_from_table(table: flatbuffers::Table<'a>) -> Self {
52        TensorDim { _tab: table }
53    }
54    #[allow(unused_mut)]
55    pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr>(
56        _fbb: &'mut_bldr mut flatbuffers::FlatBufferBuilder<'bldr>,
57        args: &'args TensorDimArgs<'args>,
58    ) -> flatbuffers::WIPOffset<TensorDim<'bldr>> {
59        let mut builder = TensorDimBuilder::new(_fbb);
60        builder.add_size_(args.size_);
61        if let Some(x) = args.name {
62            builder.add_name(x);
63        }
64        builder.finish()
65    }
66
67    /// Length of dimension
68    #[inline]
69    pub fn size_(&self) -> i64 {
70        // Safety:
71        // Created from valid Table for this object
72        // which contains a valid value in this slot
73        unsafe { self._tab.get::<i64>(TensorDim::VT_SIZE_, Some(0)).unwrap() }
74    }
75    /// Name of the dimension, optional
76    #[inline]
77    pub fn name(&self) -> Option<&'a str> {
78        // Safety:
79        // Created from valid Table for this object
80        // which contains a valid value in this slot
81        unsafe {
82            self._tab
83                .get::<flatbuffers::ForwardsUOffset<&str>>(TensorDim::VT_NAME, None)
84        }
85    }
86}
87
88impl flatbuffers::Verifiable for TensorDim<'_> {
89    #[inline]
90    fn run_verifier(
91        v: &mut flatbuffers::Verifier,
92        pos: usize,
93    ) -> Result<(), flatbuffers::InvalidFlatbuffer> {
94        use flatbuffers::Verifiable;
95        v.visit_table(pos)?
96            .visit_field::<i64>("size_", Self::VT_SIZE_, false)?
97            .visit_field::<flatbuffers::ForwardsUOffset<&str>>("name", Self::VT_NAME, false)?
98            .finish();
99        Ok(())
100    }
101}
102pub struct TensorDimArgs<'a> {
103    pub size_: i64,
104    pub name: Option<flatbuffers::WIPOffset<&'a str>>,
105}
106impl<'a> Default for TensorDimArgs<'a> {
107    #[inline]
108    fn default() -> Self {
109        TensorDimArgs {
110            size_: 0,
111            name: None,
112        }
113    }
114}
115
116pub struct TensorDimBuilder<'a: 'b, 'b> {
117    fbb_: &'b mut flatbuffers::FlatBufferBuilder<'a>,
118    start_: flatbuffers::WIPOffset<flatbuffers::TableUnfinishedWIPOffset>,
119}
120impl<'a: 'b, 'b> TensorDimBuilder<'a, 'b> {
121    #[inline]
122    pub fn add_size_(&mut self, size_: i64) {
123        self.fbb_.push_slot::<i64>(TensorDim::VT_SIZE_, size_, 0);
124    }
125    #[inline]
126    pub fn add_name(&mut self, name: flatbuffers::WIPOffset<&'b str>) {
127        self.fbb_
128            .push_slot_always::<flatbuffers::WIPOffset<_>>(TensorDim::VT_NAME, name);
129    }
130    #[inline]
131    pub fn new(_fbb: &'b mut flatbuffers::FlatBufferBuilder<'a>) -> TensorDimBuilder<'a, 'b> {
132        let start = _fbb.start_table();
133        TensorDimBuilder {
134            fbb_: _fbb,
135            start_: start,
136        }
137    }
138    #[inline]
139    pub fn finish(self) -> flatbuffers::WIPOffset<TensorDim<'a>> {
140        let o = self.fbb_.end_table(self.start_);
141        flatbuffers::WIPOffset::new(o.value())
142    }
143}
144
145impl core::fmt::Debug for TensorDim<'_> {
146    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
147        let mut ds = f.debug_struct("TensorDim");
148        ds.field("size_", &self.size_());
149        ds.field("name", &self.name());
150        ds.finish()
151    }
152}
153pub enum TensorOffset {}
154#[derive(Copy, Clone, PartialEq)]
155
156pub struct Tensor<'a> {
157    pub _tab: flatbuffers::Table<'a>,
158}
159
160impl<'a> flatbuffers::Follow<'a> for Tensor<'a> {
161    type Inner = Tensor<'a>;
162    #[inline]
163    unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner {
164        Self {
165            _tab: flatbuffers::Table::new(buf, loc),
166        }
167    }
168}
169
170impl<'a> Tensor<'a> {
171    pub const VT_TYPE_TYPE: flatbuffers::VOffsetT = 4;
172    pub const VT_TYPE_: flatbuffers::VOffsetT = 6;
173    pub const VT_SHAPE: flatbuffers::VOffsetT = 8;
174    pub const VT_STRIDES: flatbuffers::VOffsetT = 10;
175    pub const VT_DATA: flatbuffers::VOffsetT = 12;
176
177    #[inline]
178    pub unsafe fn init_from_table(table: flatbuffers::Table<'a>) -> Self {
179        Tensor { _tab: table }
180    }
181    #[allow(unused_mut)]
182    pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr>(
183        _fbb: &'mut_bldr mut flatbuffers::FlatBufferBuilder<'bldr>,
184        args: &'args TensorArgs<'args>,
185    ) -> flatbuffers::WIPOffset<Tensor<'bldr>> {
186        let mut builder = TensorBuilder::new(_fbb);
187        if let Some(x) = args.data {
188            builder.add_data(x);
189        }
190        if let Some(x) = args.strides {
191            builder.add_strides(x);
192        }
193        if let Some(x) = args.shape {
194            builder.add_shape(x);
195        }
196        if let Some(x) = args.type_ {
197            builder.add_type_(x);
198        }
199        builder.add_type_type(args.type_type);
200        builder.finish()
201    }
202
203    #[inline]
204    pub fn type_type(&self) -> Type {
205        // Safety:
206        // Created from valid Table for this object
207        // which contains a valid value in this slot
208        unsafe {
209            self._tab
210                .get::<Type>(Tensor::VT_TYPE_TYPE, Some(Type::NONE))
211                .unwrap()
212        }
213    }
214    /// The type of data contained in a value cell. Currently only fixed-width
215    /// value types are supported, no strings or nested types
216    #[inline]
217    pub fn type_(&self) -> flatbuffers::Table<'a> {
218        // Safety:
219        // Created from valid Table for this object
220        // which contains a valid value in this slot
221        unsafe {
222            self._tab
223                .get::<flatbuffers::ForwardsUOffset<flatbuffers::Table<'a>>>(Tensor::VT_TYPE_, None)
224                .unwrap()
225        }
226    }
227    /// The dimensions of the tensor, optionally named
228    #[inline]
229    pub fn shape(&self) -> flatbuffers::Vector<'a, flatbuffers::ForwardsUOffset<TensorDim<'a>>> {
230        // Safety:
231        // Created from valid Table for this object
232        // which contains a valid value in this slot
233        unsafe {
234            self._tab
235                .get::<flatbuffers::ForwardsUOffset<
236                    flatbuffers::Vector<'a, flatbuffers::ForwardsUOffset<TensorDim>>,
237                >>(Tensor::VT_SHAPE, None)
238                .unwrap()
239        }
240    }
241    /// Non-negative byte offsets to advance one value cell along each dimension
242    /// If omitted, default to row-major order (C-like).
243    #[inline]
244    pub fn strides(&self) -> Option<flatbuffers::Vector<'a, i64>> {
245        // Safety:
246        // Created from valid Table for this object
247        // which contains a valid value in this slot
248        unsafe {
249            self._tab
250                .get::<flatbuffers::ForwardsUOffset<flatbuffers::Vector<'a, i64>>>(
251                    Tensor::VT_STRIDES,
252                    None,
253                )
254        }
255    }
256    /// The location and size of the tensor's data
257    #[inline]
258    pub fn data(&self) -> &'a Buffer {
259        // Safety:
260        // Created from valid Table for this object
261        // which contains a valid value in this slot
262        unsafe { self._tab.get::<Buffer>(Tensor::VT_DATA, None).unwrap() }
263    }
264    #[inline]
265    #[allow(non_snake_case)]
266    pub fn type_as_null(&self) -> Option<Null<'a>> {
267        if self.type_type() == Type::Null {
268            let u = self.type_();
269            // Safety:
270            // Created from a valid Table for this object
271            // Which contains a valid union in this slot
272            Some(unsafe { Null::init_from_table(u) })
273        } else {
274            None
275        }
276    }
277
278    #[inline]
279    #[allow(non_snake_case)]
280    pub fn type_as_int(&self) -> Option<Int<'a>> {
281        if self.type_type() == Type::Int {
282            let u = self.type_();
283            // Safety:
284            // Created from a valid Table for this object
285            // Which contains a valid union in this slot
286            Some(unsafe { Int::init_from_table(u) })
287        } else {
288            None
289        }
290    }
291
292    #[inline]
293    #[allow(non_snake_case)]
294    pub fn type_as_floating_point(&self) -> Option<FloatingPoint<'a>> {
295        if self.type_type() == Type::FloatingPoint {
296            let u = self.type_();
297            // Safety:
298            // Created from a valid Table for this object
299            // Which contains a valid union in this slot
300            Some(unsafe { FloatingPoint::init_from_table(u) })
301        } else {
302            None
303        }
304    }
305
306    #[inline]
307    #[allow(non_snake_case)]
308    pub fn type_as_binary(&self) -> Option<Binary<'a>> {
309        if self.type_type() == Type::Binary {
310            let u = self.type_();
311            // Safety:
312            // Created from a valid Table for this object
313            // Which contains a valid union in this slot
314            Some(unsafe { Binary::init_from_table(u) })
315        } else {
316            None
317        }
318    }
319
320    #[inline]
321    #[allow(non_snake_case)]
322    pub fn type_as_utf_8(&self) -> Option<Utf8<'a>> {
323        if self.type_type() == Type::Utf8 {
324            let u = self.type_();
325            // Safety:
326            // Created from a valid Table for this object
327            // Which contains a valid union in this slot
328            Some(unsafe { Utf8::init_from_table(u) })
329        } else {
330            None
331        }
332    }
333
334    #[inline]
335    #[allow(non_snake_case)]
336    pub fn type_as_bool(&self) -> Option<Bool<'a>> {
337        if self.type_type() == Type::Bool {
338            let u = self.type_();
339            // Safety:
340            // Created from a valid Table for this object
341            // Which contains a valid union in this slot
342            Some(unsafe { Bool::init_from_table(u) })
343        } else {
344            None
345        }
346    }
347
348    #[inline]
349    #[allow(non_snake_case)]
350    pub fn type_as_decimal(&self) -> Option<Decimal<'a>> {
351        if self.type_type() == Type::Decimal {
352            let u = self.type_();
353            // Safety:
354            // Created from a valid Table for this object
355            // Which contains a valid union in this slot
356            Some(unsafe { Decimal::init_from_table(u) })
357        } else {
358            None
359        }
360    }
361
362    #[inline]
363    #[allow(non_snake_case)]
364    pub fn type_as_date(&self) -> Option<Date<'a>> {
365        if self.type_type() == Type::Date {
366            let u = self.type_();
367            // Safety:
368            // Created from a valid Table for this object
369            // Which contains a valid union in this slot
370            Some(unsafe { Date::init_from_table(u) })
371        } else {
372            None
373        }
374    }
375
376    #[inline]
377    #[allow(non_snake_case)]
378    pub fn type_as_time(&self) -> Option<Time<'a>> {
379        if self.type_type() == Type::Time {
380            let u = self.type_();
381            // Safety:
382            // Created from a valid Table for this object
383            // Which contains a valid union in this slot
384            Some(unsafe { Time::init_from_table(u) })
385        } else {
386            None
387        }
388    }
389
390    #[inline]
391    #[allow(non_snake_case)]
392    pub fn type_as_timestamp(&self) -> Option<Timestamp<'a>> {
393        if self.type_type() == Type::Timestamp {
394            let u = self.type_();
395            // Safety:
396            // Created from a valid Table for this object
397            // Which contains a valid union in this slot
398            Some(unsafe { Timestamp::init_from_table(u) })
399        } else {
400            None
401        }
402    }
403
404    #[inline]
405    #[allow(non_snake_case)]
406    pub fn type_as_interval(&self) -> Option<Interval<'a>> {
407        if self.type_type() == Type::Interval {
408            let u = self.type_();
409            // Safety:
410            // Created from a valid Table for this object
411            // Which contains a valid union in this slot
412            Some(unsafe { Interval::init_from_table(u) })
413        } else {
414            None
415        }
416    }
417
418    #[inline]
419    #[allow(non_snake_case)]
420    pub fn type_as_list(&self) -> Option<List<'a>> {
421        if self.type_type() == Type::List {
422            let u = self.type_();
423            // Safety:
424            // Created from a valid Table for this object
425            // Which contains a valid union in this slot
426            Some(unsafe { List::init_from_table(u) })
427        } else {
428            None
429        }
430    }
431
432    #[inline]
433    #[allow(non_snake_case)]
434    pub fn type_as_struct_(&self) -> Option<Struct_<'a>> {
435        if self.type_type() == Type::Struct_ {
436            let u = self.type_();
437            // Safety:
438            // Created from a valid Table for this object
439            // Which contains a valid union in this slot
440            Some(unsafe { Struct_::init_from_table(u) })
441        } else {
442            None
443        }
444    }
445
446    #[inline]
447    #[allow(non_snake_case)]
448    pub fn type_as_union(&self) -> Option<Union<'a>> {
449        if self.type_type() == Type::Union {
450            let u = self.type_();
451            // Safety:
452            // Created from a valid Table for this object
453            // Which contains a valid union in this slot
454            Some(unsafe { Union::init_from_table(u) })
455        } else {
456            None
457        }
458    }
459
460    #[inline]
461    #[allow(non_snake_case)]
462    pub fn type_as_fixed_size_binary(&self) -> Option<FixedSizeBinary<'a>> {
463        if self.type_type() == Type::FixedSizeBinary {
464            let u = self.type_();
465            // Safety:
466            // Created from a valid Table for this object
467            // Which contains a valid union in this slot
468            Some(unsafe { FixedSizeBinary::init_from_table(u) })
469        } else {
470            None
471        }
472    }
473
474    #[inline]
475    #[allow(non_snake_case)]
476    pub fn type_as_fixed_size_list(&self) -> Option<FixedSizeList<'a>> {
477        if self.type_type() == Type::FixedSizeList {
478            let u = self.type_();
479            // Safety:
480            // Created from a valid Table for this object
481            // Which contains a valid union in this slot
482            Some(unsafe { FixedSizeList::init_from_table(u) })
483        } else {
484            None
485        }
486    }
487
488    #[inline]
489    #[allow(non_snake_case)]
490    pub fn type_as_map(&self) -> Option<Map<'a>> {
491        if self.type_type() == Type::Map {
492            let u = self.type_();
493            // Safety:
494            // Created from a valid Table for this object
495            // Which contains a valid union in this slot
496            Some(unsafe { Map::init_from_table(u) })
497        } else {
498            None
499        }
500    }
501
502    #[inline]
503    #[allow(non_snake_case)]
504    pub fn type_as_duration(&self) -> Option<Duration<'a>> {
505        if self.type_type() == Type::Duration {
506            let u = self.type_();
507            // Safety:
508            // Created from a valid Table for this object
509            // Which contains a valid union in this slot
510            Some(unsafe { Duration::init_from_table(u) })
511        } else {
512            None
513        }
514    }
515
516    #[inline]
517    #[allow(non_snake_case)]
518    pub fn type_as_large_binary(&self) -> Option<LargeBinary<'a>> {
519        if self.type_type() == Type::LargeBinary {
520            let u = self.type_();
521            // Safety:
522            // Created from a valid Table for this object
523            // Which contains a valid union in this slot
524            Some(unsafe { LargeBinary::init_from_table(u) })
525        } else {
526            None
527        }
528    }
529
530    #[inline]
531    #[allow(non_snake_case)]
532    pub fn type_as_large_utf_8(&self) -> Option<LargeUtf8<'a>> {
533        if self.type_type() == Type::LargeUtf8 {
534            let u = self.type_();
535            // Safety:
536            // Created from a valid Table for this object
537            // Which contains a valid union in this slot
538            Some(unsafe { LargeUtf8::init_from_table(u) })
539        } else {
540            None
541        }
542    }
543
544    #[inline]
545    #[allow(non_snake_case)]
546    pub fn type_as_large_list(&self) -> Option<LargeList<'a>> {
547        if self.type_type() == Type::LargeList {
548            let u = self.type_();
549            // Safety:
550            // Created from a valid Table for this object
551            // Which contains a valid union in this slot
552            Some(unsafe { LargeList::init_from_table(u) })
553        } else {
554            None
555        }
556    }
557
558    #[inline]
559    #[allow(non_snake_case)]
560    pub fn type_as_run_end_encoded(&self) -> Option<RunEndEncoded<'a>> {
561        if self.type_type() == Type::RunEndEncoded {
562            let u = self.type_();
563            // Safety:
564            // Created from a valid Table for this object
565            // Which contains a valid union in this slot
566            Some(unsafe { RunEndEncoded::init_from_table(u) })
567        } else {
568            None
569        }
570    }
571}
572
573impl flatbuffers::Verifiable for Tensor<'_> {
574    #[inline]
575    fn run_verifier(
576        v: &mut flatbuffers::Verifier,
577        pos: usize,
578    ) -> Result<(), flatbuffers::InvalidFlatbuffer> {
579        use flatbuffers::Verifiable;
580        v.visit_table(pos)?
581            .visit_union::<Type, _>(
582                "type_type",
583                Self::VT_TYPE_TYPE,
584                "type_",
585                Self::VT_TYPE_,
586                true,
587                |key, v, pos| match key {
588                    Type::Null => v.verify_union_variant::<flatbuffers::ForwardsUOffset<Null>>(
589                        "Type::Null",
590                        pos,
591                    ),
592                    Type::Int => v.verify_union_variant::<flatbuffers::ForwardsUOffset<Int>>(
593                        "Type::Int",
594                        pos,
595                    ),
596                    Type::FloatingPoint => v
597                        .verify_union_variant::<flatbuffers::ForwardsUOffset<FloatingPoint>>(
598                            "Type::FloatingPoint",
599                            pos,
600                        ),
601                    Type::Binary => v.verify_union_variant::<flatbuffers::ForwardsUOffset<Binary>>(
602                        "Type::Binary",
603                        pos,
604                    ),
605                    Type::Utf8 => v.verify_union_variant::<flatbuffers::ForwardsUOffset<Utf8>>(
606                        "Type::Utf8",
607                        pos,
608                    ),
609                    Type::Bool => v.verify_union_variant::<flatbuffers::ForwardsUOffset<Bool>>(
610                        "Type::Bool",
611                        pos,
612                    ),
613                    Type::Decimal => v
614                        .verify_union_variant::<flatbuffers::ForwardsUOffset<Decimal>>(
615                            "Type::Decimal",
616                            pos,
617                        ),
618                    Type::Date => v.verify_union_variant::<flatbuffers::ForwardsUOffset<Date>>(
619                        "Type::Date",
620                        pos,
621                    ),
622                    Type::Time => v.verify_union_variant::<flatbuffers::ForwardsUOffset<Time>>(
623                        "Type::Time",
624                        pos,
625                    ),
626                    Type::Timestamp => v
627                        .verify_union_variant::<flatbuffers::ForwardsUOffset<Timestamp>>(
628                            "Type::Timestamp",
629                            pos,
630                        ),
631                    Type::Interval => v
632                        .verify_union_variant::<flatbuffers::ForwardsUOffset<Interval>>(
633                            "Type::Interval",
634                            pos,
635                        ),
636                    Type::List => v.verify_union_variant::<flatbuffers::ForwardsUOffset<List>>(
637                        "Type::List",
638                        pos,
639                    ),
640                    Type::Struct_ => v
641                        .verify_union_variant::<flatbuffers::ForwardsUOffset<Struct_>>(
642                            "Type::Struct_",
643                            pos,
644                        ),
645                    Type::Union => v.verify_union_variant::<flatbuffers::ForwardsUOffset<Union>>(
646                        "Type::Union",
647                        pos,
648                    ),
649                    Type::FixedSizeBinary => v
650                        .verify_union_variant::<flatbuffers::ForwardsUOffset<FixedSizeBinary>>(
651                            "Type::FixedSizeBinary",
652                            pos,
653                        ),
654                    Type::FixedSizeList => v
655                        .verify_union_variant::<flatbuffers::ForwardsUOffset<FixedSizeList>>(
656                            "Type::FixedSizeList",
657                            pos,
658                        ),
659                    Type::Map => v.verify_union_variant::<flatbuffers::ForwardsUOffset<Map>>(
660                        "Type::Map",
661                        pos,
662                    ),
663                    Type::Duration => v
664                        .verify_union_variant::<flatbuffers::ForwardsUOffset<Duration>>(
665                            "Type::Duration",
666                            pos,
667                        ),
668                    Type::LargeBinary => v
669                        .verify_union_variant::<flatbuffers::ForwardsUOffset<LargeBinary>>(
670                            "Type::LargeBinary",
671                            pos,
672                        ),
673                    Type::LargeUtf8 => v
674                        .verify_union_variant::<flatbuffers::ForwardsUOffset<LargeUtf8>>(
675                            "Type::LargeUtf8",
676                            pos,
677                        ),
678                    Type::LargeList => v
679                        .verify_union_variant::<flatbuffers::ForwardsUOffset<LargeList>>(
680                            "Type::LargeList",
681                            pos,
682                        ),
683                    Type::RunEndEncoded => v
684                        .verify_union_variant::<flatbuffers::ForwardsUOffset<RunEndEncoded>>(
685                            "Type::RunEndEncoded",
686                            pos,
687                        ),
688                    _ => Ok(()),
689                },
690            )?
691            .visit_field::<flatbuffers::ForwardsUOffset<
692                flatbuffers::Vector<'_, flatbuffers::ForwardsUOffset<TensorDim>>,
693            >>("shape", Self::VT_SHAPE, true)?
694            .visit_field::<flatbuffers::ForwardsUOffset<flatbuffers::Vector<'_, i64>>>(
695                "strides",
696                Self::VT_STRIDES,
697                false,
698            )?
699            .visit_field::<Buffer>("data", Self::VT_DATA, true)?
700            .finish();
701        Ok(())
702    }
703}
704pub struct TensorArgs<'a> {
705    pub type_type: Type,
706    pub type_: Option<flatbuffers::WIPOffset<flatbuffers::UnionWIPOffset>>,
707    pub shape: Option<
708        flatbuffers::WIPOffset<
709            flatbuffers::Vector<'a, flatbuffers::ForwardsUOffset<TensorDim<'a>>>,
710        >,
711    >,
712    pub strides: Option<flatbuffers::WIPOffset<flatbuffers::Vector<'a, i64>>>,
713    pub data: Option<&'a Buffer>,
714}
715impl<'a> Default for TensorArgs<'a> {
716    #[inline]
717    fn default() -> Self {
718        TensorArgs {
719            type_type: Type::NONE,
720            type_: None, // required field
721            shape: None, // required field
722            strides: None,
723            data: None, // required field
724        }
725    }
726}
727
728pub struct TensorBuilder<'a: 'b, 'b> {
729    fbb_: &'b mut flatbuffers::FlatBufferBuilder<'a>,
730    start_: flatbuffers::WIPOffset<flatbuffers::TableUnfinishedWIPOffset>,
731}
732impl<'a: 'b, 'b> TensorBuilder<'a, 'b> {
733    #[inline]
734    pub fn add_type_type(&mut self, type_type: Type) {
735        self.fbb_
736            .push_slot::<Type>(Tensor::VT_TYPE_TYPE, type_type, Type::NONE);
737    }
738    #[inline]
739    pub fn add_type_(&mut self, type_: flatbuffers::WIPOffset<flatbuffers::UnionWIPOffset>) {
740        self.fbb_
741            .push_slot_always::<flatbuffers::WIPOffset<_>>(Tensor::VT_TYPE_, type_);
742    }
743    #[inline]
744    pub fn add_shape(
745        &mut self,
746        shape: flatbuffers::WIPOffset<
747            flatbuffers::Vector<'b, flatbuffers::ForwardsUOffset<TensorDim<'b>>>,
748        >,
749    ) {
750        self.fbb_
751            .push_slot_always::<flatbuffers::WIPOffset<_>>(Tensor::VT_SHAPE, shape);
752    }
753    #[inline]
754    pub fn add_strides(&mut self, strides: flatbuffers::WIPOffset<flatbuffers::Vector<'b, i64>>) {
755        self.fbb_
756            .push_slot_always::<flatbuffers::WIPOffset<_>>(Tensor::VT_STRIDES, strides);
757    }
758    #[inline]
759    pub fn add_data(&mut self, data: &Buffer) {
760        self.fbb_.push_slot_always::<&Buffer>(Tensor::VT_DATA, data);
761    }
762    #[inline]
763    pub fn new(_fbb: &'b mut flatbuffers::FlatBufferBuilder<'a>) -> TensorBuilder<'a, 'b> {
764        let start = _fbb.start_table();
765        TensorBuilder {
766            fbb_: _fbb,
767            start_: start,
768        }
769    }
770    #[inline]
771    pub fn finish(self) -> flatbuffers::WIPOffset<Tensor<'a>> {
772        let o = self.fbb_.end_table(self.start_);
773        self.fbb_.required(o, Tensor::VT_TYPE_, "type_");
774        self.fbb_.required(o, Tensor::VT_SHAPE, "shape");
775        self.fbb_.required(o, Tensor::VT_DATA, "data");
776        flatbuffers::WIPOffset::new(o.value())
777    }
778}
779
780impl core::fmt::Debug for Tensor<'_> {
781    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
782        let mut ds = f.debug_struct("Tensor");
783        ds.field("type_type", &self.type_type());
784        match self.type_type() {
785            Type::Null => {
786                if let Some(x) = self.type_as_null() {
787                    ds.field("type_", &x)
788                } else {
789                    ds.field(
790                        "type_",
791                        &"InvalidFlatbuffer: Union discriminant does not match value.",
792                    )
793                }
794            }
795            Type::Int => {
796                if let Some(x) = self.type_as_int() {
797                    ds.field("type_", &x)
798                } else {
799                    ds.field(
800                        "type_",
801                        &"InvalidFlatbuffer: Union discriminant does not match value.",
802                    )
803                }
804            }
805            Type::FloatingPoint => {
806                if let Some(x) = self.type_as_floating_point() {
807                    ds.field("type_", &x)
808                } else {
809                    ds.field(
810                        "type_",
811                        &"InvalidFlatbuffer: Union discriminant does not match value.",
812                    )
813                }
814            }
815            Type::Binary => {
816                if let Some(x) = self.type_as_binary() {
817                    ds.field("type_", &x)
818                } else {
819                    ds.field(
820                        "type_",
821                        &"InvalidFlatbuffer: Union discriminant does not match value.",
822                    )
823                }
824            }
825            Type::Utf8 => {
826                if let Some(x) = self.type_as_utf_8() {
827                    ds.field("type_", &x)
828                } else {
829                    ds.field(
830                        "type_",
831                        &"InvalidFlatbuffer: Union discriminant does not match value.",
832                    )
833                }
834            }
835            Type::Bool => {
836                if let Some(x) = self.type_as_bool() {
837                    ds.field("type_", &x)
838                } else {
839                    ds.field(
840                        "type_",
841                        &"InvalidFlatbuffer: Union discriminant does not match value.",
842                    )
843                }
844            }
845            Type::Decimal => {
846                if let Some(x) = self.type_as_decimal() {
847                    ds.field("type_", &x)
848                } else {
849                    ds.field(
850                        "type_",
851                        &"InvalidFlatbuffer: Union discriminant does not match value.",
852                    )
853                }
854            }
855            Type::Date => {
856                if let Some(x) = self.type_as_date() {
857                    ds.field("type_", &x)
858                } else {
859                    ds.field(
860                        "type_",
861                        &"InvalidFlatbuffer: Union discriminant does not match value.",
862                    )
863                }
864            }
865            Type::Time => {
866                if let Some(x) = self.type_as_time() {
867                    ds.field("type_", &x)
868                } else {
869                    ds.field(
870                        "type_",
871                        &"InvalidFlatbuffer: Union discriminant does not match value.",
872                    )
873                }
874            }
875            Type::Timestamp => {
876                if let Some(x) = self.type_as_timestamp() {
877                    ds.field("type_", &x)
878                } else {
879                    ds.field(
880                        "type_",
881                        &"InvalidFlatbuffer: Union discriminant does not match value.",
882                    )
883                }
884            }
885            Type::Interval => {
886                if let Some(x) = self.type_as_interval() {
887                    ds.field("type_", &x)
888                } else {
889                    ds.field(
890                        "type_",
891                        &"InvalidFlatbuffer: Union discriminant does not match value.",
892                    )
893                }
894            }
895            Type::List => {
896                if let Some(x) = self.type_as_list() {
897                    ds.field("type_", &x)
898                } else {
899                    ds.field(
900                        "type_",
901                        &"InvalidFlatbuffer: Union discriminant does not match value.",
902                    )
903                }
904            }
905            Type::Struct_ => {
906                if let Some(x) = self.type_as_struct_() {
907                    ds.field("type_", &x)
908                } else {
909                    ds.field(
910                        "type_",
911                        &"InvalidFlatbuffer: Union discriminant does not match value.",
912                    )
913                }
914            }
915            Type::Union => {
916                if let Some(x) = self.type_as_union() {
917                    ds.field("type_", &x)
918                } else {
919                    ds.field(
920                        "type_",
921                        &"InvalidFlatbuffer: Union discriminant does not match value.",
922                    )
923                }
924            }
925            Type::FixedSizeBinary => {
926                if let Some(x) = self.type_as_fixed_size_binary() {
927                    ds.field("type_", &x)
928                } else {
929                    ds.field(
930                        "type_",
931                        &"InvalidFlatbuffer: Union discriminant does not match value.",
932                    )
933                }
934            }
935            Type::FixedSizeList => {
936                if let Some(x) = self.type_as_fixed_size_list() {
937                    ds.field("type_", &x)
938                } else {
939                    ds.field(
940                        "type_",
941                        &"InvalidFlatbuffer: Union discriminant does not match value.",
942                    )
943                }
944            }
945            Type::Map => {
946                if let Some(x) = self.type_as_map() {
947                    ds.field("type_", &x)
948                } else {
949                    ds.field(
950                        "type_",
951                        &"InvalidFlatbuffer: Union discriminant does not match value.",
952                    )
953                }
954            }
955            Type::Duration => {
956                if let Some(x) = self.type_as_duration() {
957                    ds.field("type_", &x)
958                } else {
959                    ds.field(
960                        "type_",
961                        &"InvalidFlatbuffer: Union discriminant does not match value.",
962                    )
963                }
964            }
965            Type::LargeBinary => {
966                if let Some(x) = self.type_as_large_binary() {
967                    ds.field("type_", &x)
968                } else {
969                    ds.field(
970                        "type_",
971                        &"InvalidFlatbuffer: Union discriminant does not match value.",
972                    )
973                }
974            }
975            Type::LargeUtf8 => {
976                if let Some(x) = self.type_as_large_utf_8() {
977                    ds.field("type_", &x)
978                } else {
979                    ds.field(
980                        "type_",
981                        &"InvalidFlatbuffer: Union discriminant does not match value.",
982                    )
983                }
984            }
985            Type::LargeList => {
986                if let Some(x) = self.type_as_large_list() {
987                    ds.field("type_", &x)
988                } else {
989                    ds.field(
990                        "type_",
991                        &"InvalidFlatbuffer: Union discriminant does not match value.",
992                    )
993                }
994            }
995            Type::RunEndEncoded => {
996                if let Some(x) = self.type_as_run_end_encoded() {
997                    ds.field("type_", &x)
998                } else {
999                    ds.field(
1000                        "type_",
1001                        &"InvalidFlatbuffer: Union discriminant does not match value.",
1002                    )
1003                }
1004            }
1005            _ => {
1006                let x: Option<()> = None;
1007                ds.field("type_", &x)
1008            }
1009        };
1010        ds.field("shape", &self.shape());
1011        ds.field("strides", &self.strides());
1012        ds.field("data", &self.data());
1013        ds.finish()
1014    }
1015}
1016#[inline]
1017/// Verifies that a buffer of bytes contains a `Tensor`
1018/// and returns it.
1019/// Note that verification is still experimental and may not
1020/// catch every error, or be maximally performant. For the
1021/// previous, unchecked, behavior use
1022/// `root_as_tensor_unchecked`.
1023pub fn root_as_tensor(buf: &[u8]) -> Result<Tensor, flatbuffers::InvalidFlatbuffer> {
1024    flatbuffers::root::<Tensor>(buf)
1025}
1026#[inline]
1027/// Verifies that a buffer of bytes contains a size prefixed
1028/// `Tensor` and returns it.
1029/// Note that verification is still experimental and may not
1030/// catch every error, or be maximally performant. For the
1031/// previous, unchecked, behavior use
1032/// `size_prefixed_root_as_tensor_unchecked`.
1033pub fn size_prefixed_root_as_tensor(buf: &[u8]) -> Result<Tensor, flatbuffers::InvalidFlatbuffer> {
1034    flatbuffers::size_prefixed_root::<Tensor>(buf)
1035}
1036#[inline]
1037/// Verifies, with the given options, that a buffer of bytes
1038/// contains a `Tensor` and returns it.
1039/// Note that verification is still experimental and may not
1040/// catch every error, or be maximally performant. For the
1041/// previous, unchecked, behavior use
1042/// `root_as_tensor_unchecked`.
1043pub fn root_as_tensor_with_opts<'b, 'o>(
1044    opts: &'o flatbuffers::VerifierOptions,
1045    buf: &'b [u8],
1046) -> Result<Tensor<'b>, flatbuffers::InvalidFlatbuffer> {
1047    flatbuffers::root_with_opts::<Tensor<'b>>(opts, buf)
1048}
1049#[inline]
1050/// Verifies, with the given verifier options, that a buffer of
1051/// bytes contains a size prefixed `Tensor` and returns
1052/// it. Note that verification is still experimental and may not
1053/// catch every error, or be maximally performant. For the
1054/// previous, unchecked, behavior use
1055/// `root_as_tensor_unchecked`.
1056pub fn size_prefixed_root_as_tensor_with_opts<'b, 'o>(
1057    opts: &'o flatbuffers::VerifierOptions,
1058    buf: &'b [u8],
1059) -> Result<Tensor<'b>, flatbuffers::InvalidFlatbuffer> {
1060    flatbuffers::size_prefixed_root_with_opts::<Tensor<'b>>(opts, buf)
1061}
1062#[inline]
1063/// Assumes, without verification, that a buffer of bytes contains a Tensor and returns it.
1064/// # Safety
1065/// Callers must trust the given bytes do indeed contain a valid `Tensor`.
1066pub unsafe fn root_as_tensor_unchecked(buf: &[u8]) -> Tensor {
1067    flatbuffers::root_unchecked::<Tensor>(buf)
1068}
1069#[inline]
1070/// Assumes, without verification, that a buffer of bytes contains a size prefixed Tensor and returns it.
1071/// # Safety
1072/// Callers must trust the given bytes do indeed contain a valid size prefixed `Tensor`.
1073pub unsafe fn size_prefixed_root_as_tensor_unchecked(buf: &[u8]) -> Tensor {
1074    flatbuffers::size_prefixed_root_unchecked::<Tensor>(buf)
1075}
1076#[inline]
1077pub fn finish_tensor_buffer<'a, 'b>(
1078    fbb: &'b mut flatbuffers::FlatBufferBuilder<'a>,
1079    root: flatbuffers::WIPOffset<Tensor<'a>>,
1080) {
1081    fbb.finish(root, None);
1082}
1083
1084#[inline]
1085pub fn finish_size_prefixed_tensor_buffer<'a, 'b>(
1086    fbb: &'b mut flatbuffers::FlatBufferBuilder<'a>,
1087    root: flatbuffers::WIPOffset<Tensor<'a>>,
1088) {
1089    fbb.finish_size_prefixed(root, None);
1090}