Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for XlaClusterOutput (0.15 sec)

  1. tensorflow/compiler/jit/encapsulate_xla_computations_pass_test.cc

      scope.graph()->AddEdge(w.node(), 0, launch, 6);
    
      auto out0 =
          ops::XlaClusterOutput(scope.WithOpName("Out0"), Output(launch, 0));
      auto out1 =
          ops::XlaClusterOutput(scope.WithOpName("Out1"), Output(launch, 1));
      auto out2 =
          ops::XlaClusterOutput(scope.WithOpName("Out2"), Output(launch, 2));
      auto out3 =
          ops::XlaClusterOutput(scope.WithOpName("Out3"), Output(launch, 3));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 18:03:15 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

    #include "tensorflow/core/platform/statusor.h"
    #include "tensorflow/core/util/dump_graph.h"
    
    namespace tensorflow {
    
    namespace {
    
    const char* const kXlaClusterOutput = "XlaClusterOutput";
    
    bool IsCpuGpuCompile(const Graph* graph) {
      for (Node* n : graph->nodes()) {
        string name;
        // Only consider nodes being compiled.
        if (!TryGetNodeAttr(n->attrs(), kXlaClusterIdAttr, &name)) continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top