HomeSort by relevance Sort by last modified time
    Searched full:path_to_root (Results 1 - 3 of 3) sorted by null

  /external/tensorflow/tensorflow/contrib/eager/python/
checkpointable_utils.py 103 path_to_root = {root_checkpointable: ()}
110 if child_checkpointable.ref not in path_to_root:
111 path_to_root[child_checkpointable.ref] = (
112 path_to_root[current_checkpointable] + (child_checkpointable,))
114 return bfs_sorted, path_to_root
127 def _object_prefix_from_path(path_to_root):
130 for checkpointable in path_to_root))
259 checkpointable_objects, path_to_root = (
263 for obj, path in path_to_root.items()}
  /art/runtime/
subtype_check_info.h 281 BitString path_to_root = GetPathToRoot(); local
285 << GetNext() << " path: " << path_to_root;
287 if (path_to_root.Length() == depth_) {
330 SubtypeCheckInfo(BitString path_to_root, BitStringChar next, bool overflow, size_t depth) {
332 iod.bitstring_ = path_to_root;
339 DCHECK_GE(depth_, path_to_root.Length())
340 << "Path was too long for the depth, path: " << path_to_root;
355 << "Path to root overlapped with Next value, path: " << path_to_root;
356 DCHECK_EQ(path_to_root, GetPathToRoot());
460 BitString path_to_root = GetPathToRoot() local
    [all...]
subtype_check_info_test.cc 96 static SubtypeCheckInfo MakeSubtypeCheckInfo(BitString path_to_root = {},
102 return SubtypeCheckInfo(path_to_root, next, overflow, depth);
262 MakeSubtypeCheckInfo(/*path_to_root*/MakeBitStringMax(),

Completed in 656 milliseconds