Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for TF_SessionRun (0.38 sec)

  1. tensorflow/c/c_api_internal.h

      tensorflow::Session* session;
      TF_Graph* const graph;
    
      tensorflow::mutex mu TF_ACQUIRED_AFTER(TF_Graph::mu);
      int last_num_graph_nodes;
    
      // If true, TF_SessionRun and similar methods will call
      // ExtendSessionGraphHelper before running the graph (this is the default
      // public behavior). Can be set to false if the caller needs to call
      // ExtendSessionGraphHelper manually.
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Sat May 13 00:49:12 GMT 2023
    - 7.6K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_experimental.cc

            "Unable to find the dequeue node in the TF graph.");
        return nullptr;
      }
    
      VLOG(1) << "Running the dequeue op";
      TF_Output output{dequeue_op, 0};
      TF_Tensor* ret;
      TF_SessionRun(session, /*run_options*/ nullptr,
                    // input related parameters
                    /*inputs*/ nullptr, /*input_values*/ nullptr, /*ninputs*/ 0,
                    // output related parameters
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 29.4K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.h

                                                              bool require);
    
    // Extends `session` with any new operations added to its associated graph.
    // Usually this happens automatically in TF_SessionRun. After this is called,
    // TF_SessionRun will no longer extend the session on every call.
    //
    // We expose this here to allow fine-grained synchronization in multi-threaded
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  4. tensorflow/c/c_test_util.cc

      TF_Tensor** output_values_ptr =
          output_values_.empty() ? nullptr : &output_values_[0];
    
      TF_Operation* const* targets_ptr = targets_.empty() ? nullptr : &targets_[0];
    
      TF_SessionRun(session_, nullptr, inputs_ptr, input_values_ptr, inputs_.size(),
                    outputs_ptr, output_values_ptr, outputs_.size(), targets_ptr,
                    targets_.size(), nullptr, s);
    
      DeleteInputValues();
    }
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri Oct 15 03:16:52 GMT 2021
    - 17.8K bytes
    - Viewed (2)
  5. tensorflow/c/c_api.cc

          *graph_def.mutable_versions() = graph.versions();
          // Fill graph_def with nodes with ids in the range
          // [session->last_num_graph_nodes, num_nodes), that is the nodes
          // added since the last TF_SessionRun() call.
          for (auto id = session->last_num_graph_nodes; id < num_nodes; ++id) {
            Node* const node = graph.FindNodeId(id);
            if (node != nullptr && node->IsOp()) {
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  6. tensorflow/c/c_api_test.cc

      TF_Output feeds[] = {{x, 0}, {y, 0}};
      TF_Tensor* feedValues[] = {FloatTensor(X), FloatTensor(Y)};
      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]);
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
  7. RELEASE.md

        previously `TF_Session` has been renamed to `TF_DeprecatedSession`.
    *   C API: Renamed `TF_Port` to `TF_Output`.
    *   C API: The caller retains ownership of `TF_Tensor` objects provided to
        `TF_Run`, `TF_SessionRun`, `TF_SetAttrTensor` etc.
    *   Renamed `tf.image.per_image_whitening()` to
        `tf.image.per_image_standardization()`
    *   Move Summary protobuf constructors to `tf.summary` submodule.
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top