Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for target_opers (0.05 seconds)

  1. tensorflow/c/c_api.cc

                       int ninputs, const TF_Output* outputs,
                       TF_Tensor** output_values, int noutputs,
                       const TF_Operation* const* target_opers, int ntargets,
                       TF_Buffer* run_metadata, TF_Status* status) {
      // TODO(josh11b,mrry): Change Session to be able to use a Graph*
      // directly, instead of requiring us to serialize to a GraphDef and
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Oct 04 05:55:32 GMT 2025
    - 102.4K bytes
    - Click Count (0)
  2. tensorflow/c/c_api_test.cc

      TF_Output fetches[] = {dxy_dx, dxy_dy};
      TF_Tensor* fetchValues[] = {nullptr, nullptr};
    
      TF_SessionRun(sess, nullptr /* run_options */, feeds, feedValues, 2, fetches,
                    fetchValues, 2, nullptr /* target_opers */, 0,
                    nullptr /* run_metadata */, s_);
      TF_DeleteTensor(feedValues[0]);
      TF_DeleteTensor(feedValues[1]);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      TF_DeleteSession(sess, s_);
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Wed Jan 07 04:56:09 GMT 2026
    - 97.3K bytes
    - Click Count (0)
Back to Top