Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _destroy_resource (0.13 sec)

  1. tensorflow/c/experimental/saved_model/core/saved_model_utils.cc

            resource.initialize = &objects->concrete_functions[child_node_id];
          } else if (child.local_name() == "_destroy_resource" &&
                     obj_graph.nodes(child.node_id()).kind_case() ==
                         SavedObject::kFunction) {
            resource.destroy_resource = &objects->concrete_functions[child_node_id];
          }
        }
      }
    
      objects->signatures_map = std::move(signatures_map);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 19:17:46 UTC 2023
    - 24K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

          }
        }
    
        TFConcreteFunction* destroy_resource = nullptr;
        if (resource_revival_state.destroy_resource != nullptr) {
          destroy_resource = revived->concrete_functions.Find(
              resource_revival_state.destroy_resource->node_id);
          if (destroy_resource == nullptr) {
            return absl::FailedPreconditionError(absl::StrCat(
                "'destroy_resource' function with node id ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
Back to top