Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for target_opers (0.18 sec)

  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
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.h

        // Output tensors
        const TF_Output* outputs, TF_Tensor** output_values, int noutputs,
        // Target operations
        const TF_Operation* const* target_opers, int ntargets,
        // RunMetadata
        TF_Buffer* run_metadata,
        // Output status
        TF_Status*);
    
    // Set up the graph with the intended feeds (inputs) and fetches (outputs) for a
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  3. 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_);
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
Back to top