Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TF_SessionPRunSetup (0.11 sec)

  1. 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)
  2. 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