HomeSort by relevance Sort by last modified time
    Searched defs:checkpoint (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/tensorflow/tensorflow/core/util/
saved_tensor_slice_util_test.cc 25 namespace checkpoint { namespace in namespace:tensorflow
45 } // namespace checkpoint
saved_tensor_slice_util.cc 24 namespace checkpoint { namespace in namespace:tensorflow
125 } // namespace checkpoint
saved_tensor_slice_util.h 30 namespace checkpoint { namespace in namespace:tensorflow
32 // The key for the metadata in the tensor slice checkpoint files. It is "" so
33 // that the metadata is always at the beginning of a checkpoint file.
208 } // namespace checkpoint
tensor_slice_reader_cache.cc 25 namespace checkpoint { namespace in namespace:tensorflow
107 LOG(WARNING) << "Caching disabled because the checkpoint file "
117 } // namespace checkpoint
tensor_slice_reader_cache.h 31 namespace checkpoint { namespace in namespace:tensorflow
84 } // namespace checkpoint
tensor_slice_set.h 38 namespace checkpoint { namespace in namespace:tensorflow
104 } // namespace checkpoint
tensor_slice_set_test.cc 26 namespace checkpoint { namespace in namespace:tensorflow
253 } // namespace checkpoint
tensor_slice_set.cc 26 namespace checkpoint { namespace in namespace:tensorflow
200 } // namespace checkpoint
tensor_slice_writer.cc 32 namespace checkpoint { namespace in namespace:tensorflow
56 s = errors::Internal("Error writing (tmp) checkpoint file: ", name_, ": ",
197 } // namespace checkpoint
tensor_slice_reader_test.cc 38 namespace checkpoint { namespace in namespace:tensorflow
404 const string path = io::JoinPath(testing::TmpDir(), "checkpoint");
407 // Prepare an empty checkpoint with some version information
436 strings::StrCat("Checkpoint min consumer version ",
444 VersionTest(versions, strings::StrCat("Checkpoint producer version ",
458 "Checkpoint disallows consumer version ", TF_CHECKPOINT_VERSION,
464 } // namespace checkpoint
tensor_slice_writer_test.cc 34 namespace checkpoint { namespace in namespace:tensorflow
73 const string filename = io::JoinPath(testing::TmpDir(), "checkpoint");
120 // Now we examine the checkpoint file manually.
325 const string filename = io::JoinPath(testing::TmpDir(), "checkpoint");
352 } // namespace checkpoint
tensor_slice_reader.cc 36 namespace checkpoint { namespace in namespace:tensorflow
162 "checkpoint file: ",
167 TF_CHECKPOINT_VERSION_MIN_PRODUCER, "Checkpoint",
168 "checkpoint");
233 return errors::NotFound(name, " not found in checkpoint file");
270 return errors::NotFound(name, " not found in checkpoint file");
317 } // namespace checkpoint
tensor_slice_reader.h 44 namespace checkpoint { namespace in namespace:tensorflow
56 // Abstract interface for reading data out of a tensor slice checkpoint file
186 checkpoint::TensorProtoData<T>(sts.data().data()), data);
191 } // namespace checkpoint
tensor_slice_writer.h 41 namespace checkpoint { namespace in namespace:tensorflow
191 } // namespace checkpoint
  /external/tensorflow/tensorflow/c/
checkpoint_reader.h 30 namespace checkpoint { namespace in namespace:tensorflow
35 // checkpoint::TensorSliceReader (for V1), that is more easily SWIG wrapped for
79 } // namespace checkpoint
checkpoint_reader.cc 28 namespace checkpoint { namespace in namespace:tensorflow
154 } // namespace checkpoint
  /cts/tests/tests/slice/src/android/slice/cts/
SliceMetricsTest.java 46 mMetricsReader.checkpoint(); // clear out old logs
  /external/tensorflow/tensorflow/python/training/
checkpointable.py 86 def __init__(self, checkpoint, proto_id):
87 """Specify an object within a checkpoint.
90 checkpoint: A _Checkpoint object.
93 self._checkpoint = checkpoint
106 """Set a checkpoint<->object correspondence and process slot variables.
116 checkpoint = self.checkpoint
117 current_assignment = checkpoint.object_by_proto_id.get(self._proto_id, None)
119 checkpoint.object_by_proto_id[self._proto_id] = checkpointable
121 checkpoint.deferred_slot_restorations.pop(self._proto_id, ()))
189 def checkpoint(self): member in class:_CheckpointPosition
    [all...]
  /frameworks/base/core/tests/coretests/src/android/metrics/
MetricsReaderTest.java 109 mReader.checkpoint();
  /platform_testing/tests/functional/systemmetrics/src/com/android/systemmetrics/functional/
AppStartTests.java 76 mMetricsReader.checkpoint(); // clear out old logs
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
prove.go 324 // checkpoint saves the current state of known relations.
326 func (ft *factsTable) checkpoint() { func
332 // before the previous checkpoint.
520 ft.checkpoint()
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
prove.go 324 // checkpoint saves the current state of known relations.
326 func (ft *factsTable) checkpoint() { func
332 // before the previous checkpoint.
520 ft.checkpoint()
  /external/perfetto/src/ipc/
unix_socket_unittest.cc 84 auto checkpoint = task_runner_.CreateCheckpoint("failure"); local
86 .WillOnce(InvokeWithoutArgs(checkpoint));
107 auto checkpoint = task_runner_.CreateCheckpoint("cli_connected"); local
110 .WillOnce(InvokeWithoutArgs(checkpoint));
230 auto checkpoint = task_runner_.CreateCheckpoint(std::to_string(i)); local
232 .WillOnce(Invoke([checkpoint](UnixSocket* s) {
234 checkpoint();
269 auto checkpoint = task_runner_.CreateCheckpoint("change_seen_by_server"); local
272 [this, tmp_fd, checkpoint, mem](UnixSocket*, UnixSocket* new_conn) {
277 .WillOnce(Invoke([checkpoint, mem](UnixSocket* s)
293 auto checkpoint = task_runner_.CreateCheckpoint("change_seen_by_client"); local
    [all...]
  /external/python/cpython2/Lib/bsddb/
dbtables.py 285 def checkpoint(self, mins=0): member in class:bsdTableDB
  /external/vixl/src/
pool-manager-impl.h 63 // the alignment into account, which only makes the checkpoint calculations
116 // Recalculate the checkpoint before emitting the footer. The footer might
162 T PoolManager<T>::UpdateCheckpointForObject(T checkpoint,
164 checkpoint -= object->label_base_->GetPoolObjectSizeInBytes();
165 if (checkpoint > object->max_location_) checkpoint = object->max_location_;
166 checkpoint = AlignDown(checkpoint, object->alignment_);
167 return checkpoint;
176 static inline bool CheckCurrentPC(T pc, T checkpoint) {
318 T checkpoint = MaxCheckpoint<T>(); local
    [all...]

Completed in 427 milliseconds

1 2 3