Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for generator (0.18 sec)

  1. tensorflow/c/c_api.cc

      // to the one used to create the session.
      //
      // TODO(jhseu): When Session is modified to take Graphs instead of
      // GraphDefs, return the Graph generated in LoadSavedModel().
      TF_ImportGraphDefOptions* import_opts = TF_NewImportGraphDefOptions();
      TF_ImportGraphDefResults results;
      GraphImportGraphDefLocked(graph, bundle.meta_graph_def.graph_def(),
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_test.cc

      TF_DeleteTensor(t);
      EXPECT_TRUE(deallocator_called);
    }
    
    TEST(CAPI, LibraryLoadFunctions) {
      // TODO(b/73318067): Fix linking for the GPU test generated by the
      // tf_cuda_cc_test() bazel rule and remove the next line.
      if (!GPUDeviceName().empty()) return;
    
    #if !defined(TENSORFLOW_NO_SHARED_OBJECTS)
      {
        // Load the library.
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
  3. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

      auto metadata = gcs_client->GetObjectMetadata(
          bucket, object, gcs::Fields("generation,size,timeStorageClassUpdated"));
      if (!metadata) return TF_SetStatusFromGCSStatus(metadata.status(), status);
      stat->generation_number = metadata->generation();
      stat->base.length = metadata->size();
      stat->base.mtime_nsec =
          metadata->time_storage_class_updated().time_since_epoch().count();
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Aug 23 06:55:53 GMT 2023
    - 46.9K bytes
    - Viewed (0)
Back to top