Home
last modified time | relevance | path

Searched refs:GetBlobFields (Results 1 – 9 of 9) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/minddata/mindrecord/include/
Dshard_schema.h65 std::vector<std::string> GetBlobFields() const;
Dshard_segment.h82 std::pair<ShardType, std::vector<std::string>> GetBlobFields();
Dshard_reader.h178 std::pair<ShardType, std::vector<std::string>> GetBlobFields();
/third_party/mindspore/mindspore/ccsrc/minddata/mindrecord/common/
Dshard_pybind.cc58 .def("get_blob_fields", &Schema::GetBlobFields) in BindSchema()
170 .def("get_blob_fields", &ShardReader::GetBlobFields) in BindShardReader()
256 .def("get_blob_fields", [](ShardSegment &s) { return s.GetBlobFields(); }); in BindShardSegment()
/third_party/mindspore/mindspore/ccsrc/minddata/mindrecord/meta/
Dshard_schema.cc55 std::vector<std::string> Schema::GetBlobFields() const { return blob_fields_; } in GetBlobFields() function in mindspore::mindrecord::Schema
Dshard_header.cc647 blob_fields = build_schema_ptr->GetBlobFields(); in Initialize()
/third_party/mindspore/mindspore/ccsrc/minddata/mindrecord/io/
Dshard_segment.cc311 std::pair<ShardType, std::vector<std::string>> ShardSegment::GetBlobFields() { in GetBlobFields() function in mindspore::mindrecord::ShardSegment
315 const auto &fields = schema_list[0]->GetBlobFields(); in GetBlobFields()
Dshard_reader.cc684 std::pair<ShardType, std::vector<std::string>> ShardReader::GetBlobFields() { in GetBlobFields() function in mindspore::mindrecord::ShardReader
688 const auto &fields = p->GetBlobFields(); in GetBlobFields()
1385 auto blob_fields = GetBlobFields().second; in UnCompressBlob()
Dshard_writer.cc341 for (const auto &field : schema_ptr->GetBlobFields()) { in CheckData()