Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/util/tensor_bundle/
Dtensor_bundle.cc494 BundleEntryProto* full_entry = &entries_[full_tensor_key_string]; in AddSlice() local
495 if (full_entry->dtype() != DT_INVALID) { in AddSlice()
496 CHECK_EQ(full_entry->dtype(), slice_tensor.dtype()); in AddSlice()
498 if (full_entry->has_shape()) { in AddSlice()
499 CHECK(TensorShape(full_entry->shape()) == full_tensor_shape); in AddSlice()
504 full_entry->set_dtype(slice_tensor.dtype()); in AddSlice()
505 full_tensor_shape.AsProto(full_entry->mutable_shape()); in AddSlice()
506 TensorSliceProto* slice_proto = full_entry->add_slices(); in AddSlice()