Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for corners (0.28 sec)

  1. tensorflow/c/eager/c_api_distributed_test.cc

    // once (i.e., on the main function side) in running distributed functions.
    // This test creates a cluster with two workers, create a variable on the
    // second worker, and run a distributed function (VariableAddFunction) whose ops
    // span the local and remote workers. If the graph optimization pass is executed
    // on both the main function side and the component function side, an error will
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Feb 15 09:49:45 GMT 2024
    - 23.5K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_test.cc

      }
    
      return single_host_server_def;
    }
    
    tensorflow::ServerDef GetClusterServerDef(const string& worker_job_name,
                                              int num_workers) {
      tensorflow::ServerDef server_def = GetServerDef(worker_job_name, num_workers);
      tensorflow::ClusterDef* cluster_def = server_def.mutable_cluster();
    
      // Add a client.
      tensorflow::JobDef* job_def2 = cluster_def->add_job();
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Aug 03 20:50:20 GMT 2023
    - 94.6K bytes
    - Viewed (1)
  3. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      FileSystem* fs = nullptr;
      Status s = env_->GetFileSystemForFile(generic_path, &fs);
      if (fs == nullptr || !s.ok())
        GTEST_SKIP() << "No filesystem registered: " << s;
    
      // First, test some interesting corner cases concerning empty URIs
      if (GetParam().empty()) {
        EXPECT_EQ(fs->TranslateName(""), "");
        EXPECT_EQ(fs->TranslateName("/"), "/");
        EXPECT_EQ(fs->TranslateName("//"), "/");
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri May 27 20:25:58 GMT 2022
    - 71K bytes
    - Viewed (0)
Back to top