Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for bots (0.24 sec)

  1. tensorflow/c/c_api_function_test.cc

      // Define a second function
      TF_Function* func1;
      DefineFunction("FooFunc1", &func1);
      TF_GraphCopyFunction(host_graph_, func1, nullptr, s_);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
    
      // Get both function from host_graph_
      EXPECT_EQ(TF_GraphNumFunctions(host_graph_), 2);
      EXPECT_EQ(TF_GraphGetFunctions(host_graph_, funcs, 0, s_), 0);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Jul 20 22:08:54 GMT 2023
    - 63.6K bytes
    - Viewed (6)
  2. tensorflow/c/eager/c_api_test.cc

      TFE_DeleteContext(local_ctx);
      TFE_DeleteContext(remote_ctx);
    
      worker_server1.release();
      worker_server0.release();
    }
    
    // This test verifies the following:
    // 1. Start the GRPC servers for both worker 0 and 1 using the full cluster
    //    server def A.
    // 2. Create a context B using the full cluster server def A.
    // 3. Create the variable in B.
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Aug 03 20:50:20 GMT 2023
    - 94.6K bytes
    - Viewed (1)
  3. tensorflow/c/c_api_test.cc

        EXPECT_TRUE(GetGraphDef(expected_graph_, &expected_gdef));
        EXPECT_TRUE(GetGraphDef(graph_, &gdef));
        TF_EXPECT_GRAPH_EQ(expected_gdef, gdef);
    
        // Compare that the output of the gradients of both graphs match.
        RunGraphsAndCompareOutputs(grad_outputs, expected_grad_outputs);
      }
    
      void TestGradientsError(bool grad_inputs_provided) {
        TF_Output inputs[1];
        TF_Output outputs[1];
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
Back to top