Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. tensorflow/c/c_api.h

    // sequence of partial run calls.
    //
    // On success, returns a handle that is used for subsequent PRun calls. The
    // handle should be deleted with TF_DeletePRunHandle when it is no longer
    // needed.
    //
    // On failure, out_status contains a tensorflow::Status with an error
    // message. *handle is set to nullptr.
    TF_CAPI_EXPORT extern void TF_SessionPRunSetup(
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_test.cc

      EXPECT_EQ(7, *(static_cast<int32*>(TF_TensorData(fetchValues2[0]))));
      TF_DeleteTensor(feedValues2[0]);
      TF_DeleteTensor(fetchValues2[0]);
    
      // Clean up.
      TF_DeletePRunHandle(handle);
      TF_DeleteSession(sess, s);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
      TF_DeleteGraph(graph);
      TF_DeleteStatus(s);
    }
    
    TEST(CAPI, ShapeInferenceError) {
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 16:27:48 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top