MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / Skip

Method Skip

tensorflow/core/util/tensor_bundle/tensor_bundle.cc:1530–1537  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1528}
1529
1530Status SegmentBundleReader::Skip(int64 size) {
1531 if (size > remain_size_) {
1532 return errors::InvalidArgument("SegmentBundleReader Read Exhuasted");
1533 }
1534 TF_RETURN_IF_ERROR(input_->SkipNBytes(size));
1535 remain_size_ -= size;
1536 return Status::OK();
1537}
1538
1539} // namespace tensorflow

Callers 5

SkipExtraneousTagFunction · 0.45
ParseStringFunction · 0.45
ParseBytesFeatureFunction · 0.45
ReserveSamples128Method · 0.45

Calls 2

InvalidArgumentFunction · 0.85
SkipNBytesMethod · 0.45

Tested by

no test coverage detected