Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TF_SessionPRunSetup (0.19 sec)

  1. tensorflow/c/c_api.h

    // 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(
        TF_Session*,
        // Input names
        const TF_Output* inputs, int ninputs,
        // Output names
        const TF_Output* outputs, int noutputs,
        // Target operations
    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.cc

      // Actually run.
      TF_Run_Helper(session->session, nullptr, run_options, input_pairs,
                    output_names, output_values, target_names, run_metadata,
                    status);
    }
    
    void TF_SessionPRunSetup(TF_Session* session, const TF_Output* inputs,
                             int ninputs, const TF_Output* outputs, int noutputs,
                             const TF_Operation* const* target_opers, int ntargets,
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 16:27:48 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_test.cc

      TF_DeleteSessionOptions(opts);
    
      TF_Output feeds[] = {TF_Output{a, 0}, TF_Output{b, 0}};
      TF_Output fetches[] = {TF_Output{plus2, 0}, TF_Output{plusB, 0}};
    
      const char* handle = nullptr;
      TF_SessionPRunSetup(sess, feeds, TF_ARRAYSIZE(feeds), fetches,
                          TF_ARRAYSIZE(fetches), nullptr, 0, &handle, s);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    
      // Feed A and fetch A + 2.
    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