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.cc467 BundleEntryProto* full_entry = &entries_[full_tensor_key_string]; in AddSlice() local
468 if (full_entry->dtype() != DT_INVALID) { in AddSlice()
469 CHECK_EQ(full_entry->dtype(), slice_tensor.dtype()); in AddSlice()
471 if (full_entry->has_shape()) { in AddSlice()
472 CHECK(TensorShape(full_entry->shape()) == full_tensor_shape); in AddSlice()
477 full_entry->set_dtype(slice_tensor.dtype()); in AddSlice()
478 full_tensor_shape.AsProto(full_entry->mutable_shape()); in AddSlice()
479 TensorSliceProto* slice_proto = full_entry->add_slices(); in AddSlice()