| 511 | }; |
| 512 | |
| 513 | inline ::flatbuffers::Offset<SparseTensorIndexCSF> CreateSparseTensorIndexCSF( |
| 514 | ::flatbuffers::FlatBufferBuilder &_fbb, |
| 515 | ::flatbuffers::Offset<org::apache::arrow::flatbuf::Int> indptrType = 0, |
| 516 | ::flatbuffers::Offset<::flatbuffers::Vector<const org::apache::arrow::flatbuf::Buffer *>> indptrBuffers = 0, |
| 517 | ::flatbuffers::Offset<org::apache::arrow::flatbuf::Int> indicesType = 0, |
| 518 | ::flatbuffers::Offset<::flatbuffers::Vector<const org::apache::arrow::flatbuf::Buffer *>> indicesBuffers = 0, |
| 519 | ::flatbuffers::Offset<::flatbuffers::Vector<int32_t>> axisOrder = 0) { |
| 520 | SparseTensorIndexCSFBuilder builder_(_fbb); |
| 521 | builder_.add_axisOrder(axisOrder); |
| 522 | builder_.add_indicesBuffers(indicesBuffers); |
| 523 | builder_.add_indicesType(indicesType); |
| 524 | builder_.add_indptrBuffers(indptrBuffers); |
| 525 | builder_.add_indptrType(indptrType); |
| 526 | return builder_.Finish(); |
| 527 | } |
| 528 | |
| 529 | inline ::flatbuffers::Offset<SparseTensorIndexCSF> CreateSparseTensorIndexCSFDirect( |
| 530 | ::flatbuffers::FlatBufferBuilder &_fbb, |
no test coverage detected