Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PRunSetup (0.08 sec)

  1. tensorflow/cc/saved_model/loader.cc

                             target_node_names, outputs, run_metadata);
      }
    
      Status PRunSetup(const std::vector<string>& input_names,
                       const std::vector<string>& output_names,
                       const std::vector<string>& target_nodes,
                       string* handle) override {
        return absl::UnimplementedError("Session::PRunSetup()");
      }
    
      Status PRun(const string& handle,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.cc

        output_names[i] = c_output_names[i];
      }
      for (int i = 0; i < ntargets; ++i) {
        target_oper_names[i] = c_target_oper_names[i];
      }
      string new_handle;
      status->status = s->session->PRunSetup(input_names, output_names,
                                             target_oper_names, &new_handle);
      if (status->status.ok()) {
        char* buf = new char[new_handle.size() + 1];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top