Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for host_graph (0.18 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.h

    // XlaHostCompute nodes. Each outside compilation subgraph will be rewritten by
    // `RewriteOutsideCompilationSubgraphFn`, and they will be merged into one
    // single host side graph (`host_graph`).
    //
    // xla_cluster_attr_name and outside_compilation_attr_name: attr name for XLA
    //   computation and outside compilation. Required for
    //   `RewriteOutsideCompilationSubgraphFn`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/cc/training/queue_runner.h

      /// otherwise returns the first captured failure status.
      Status Join() final;
    
      /// Returns the latest status.
      Status GetStatus();
    
      // Returns the stored cost model.
      Status ExportCostGraph(CostGraphDef* cost_graph) const override;
    
     private:
      QueueRunner() : coord_(nullptr), stopped_(false), cg_mu_(nullptr) {}
    
      // Initializes the instance with the QueueRunnerDef proto.
      Status Init(const QueueRunnerDef& queue_runner_def);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 18:27:00 UTC 2022
    - 5K bytes
    - Viewed (0)
  4. tensorflow/cc/training/coordinator.h

    #ifndef TENSORFLOW_CC_TRAINING_COORDINATOR_H_
    #define TENSORFLOW_CC_TRAINING_COORDINATOR_H_
    
    #include <atomic>
    #include <memory>
    #include <unordered_set>
    #include <vector>
    
    #include "tensorflow/core/framework/cost_graph.pb.h"
    #include "tensorflow/core/lib/core/status.h"
    #include "tensorflow/core/platform/macros.h"
    #include "tensorflow/core/platform/mutex.h"
    #include "tensorflow/core/protobuf/config.pb.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. 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)
Back to top