Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RestoredResource (0.21 sec)

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

          }));
    
      return Status();
    }
    
    Status InitializeAllResources(const RevivedObjects& revived) {
      for (const auto& node_and_resource : revived.restored_resources) {
        const RestoredResource& resource = node_and_resource.second;
        TF_RETURN_IF_ERROR(resource.Initialize());
      }
      return Status();
    }
    
    }  // namespace
    
    Status TFSavedModelAPI::GetFunction(const std::string& function_path,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

              absl::StrCat("Resource at node id ", node_id,
                           " does not have a resource handle."));
        }
    
        revived->restored_resources.emplace(
            node_id, RestoredResource(
                         /*device=*/resource_revival_state.device,
                         /*create_resource=*/create_resource,
                         /*initialize=*/initialize,
    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