Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for host_graph (0.13 sec)

  1. tensorflow/cc/training/queue_runner.cc

      mutex_lock l(mu_);
      return status_;
    }
    
    Status QueueRunner::ExportCostGraph(CostGraphDef* cost_graph) const {
      if (!cg_mu_) {
        return Status(absl::StatusCode::kFailedPrecondition,
                      "This QueueRunner doesn't collect a cost graph.");
      }
      mutex_lock l(*cg_mu_);
      cost_graph->MergeFrom(*cost_graph_);
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:30:37 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. tensorflow/cc/training/coordinator.cc

      mutex_lock l(mu_);
      while (!should_stop_) {
        wait_for_stop_.wait(l);
      }
    }
    
    Status Coordinator::ExportCostGraph(CostGraphDef* cost_graph) const {
      mutex_lock l(runners_lock_);
      for (auto& t : runners_) {
        Status s = t->ExportCostGraph(cost_graph);
        if (!s.ok()) {
          return s;
        }
      }
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:30:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.cc

      *input = {oper, 0};
      return true;
    }
    
    // Copies `src_graph` into `dst_graph`. Any node in `src_graph` with input
    // `src_inputs[i]` will have that input replaced with `dst_inputs[i]`.  `prefix`
    // will be prepended to copied node names. `control_deps` are nodes in
    // `dst_graph` that the copied `src_graph` nodes will have control dependencies
    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