Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. tensorflow/c/eager/c_api_test.cc

    REGISTER_OP("TestNonCommUnavailable")
        .Output("out: string")
        .Doc(R"doc(Test non-communication op throwing Unavailable error.)doc");
    
    REGISTER_OP("TestCommUnavailable")
        .Output("out: string")
        .SetIsDistributedCommunication()
        .Doc(R"doc(Test communication op throwing Unavailable error.)doc");
    
    // Kernel that throws an Unavailable error.
    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)
  2. tensorflow/c/c_api_test.cc

      TF_DeleteBuffer(t_buffer);
    }
    
    REGISTER_OP("TestOpWithNoGradient")
        .Input("x: T")
        .Output("y: T")
        .Attr("T: {float, double}")
        .Doc(R"doc(
    Test op with no grad registered.
    
    x: input
    y: output
    )doc")
        .SetShapeFn(tensorflow::shape_inference::UnknownShape);
    
    class CApiGradientsTest : public ::testing::Test {
     protected:
      CApiGradientsTest()
    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