Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for xds_cluster (0.1 sec)

  1. tensorflow/cc/framework/scope.cc

      return Scope(new Impl(*this, Impl::Tags::AssignedDevice(), assigned_device));
    }
    
    Scope Scope::WithXlaCluster(const string& xla_cluster) const {
      return Scope(new Impl(*this, Impl::Tags::XlaCluster(), xla_cluster));
    }
    
    Scope Scope::ColocateWith(const Operation& op) const {
      return Scope(new Impl(*this, Impl::Tags::Colocate(), op,
                            /* clear_colocations */ false));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/scope.h

      Scope WithAssignedDevice(const string& assigned_device) const;
    
      /// Returns a new scope.  All ops created within the returned scope will have
      /// their _XlaCluster attribute set to `xla_cluster`.
      Scope WithXlaCluster(const string& xla_cluster) const;
    
      /// Return a new scope. All ops created within the returned scope will be
      /// co-located on the device where op is placed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/partially_decluster_pass.cc

          // If yes, decluster `n` to avoid the device-to-host memcpy.
          std::optional<absl::string_view> dst_cluster =
              result->count(dst) ? std::nullopt : GetXlaClusterForNode(*dst);
          if (from_cluster != dst_cluster) {
            CHECK(result->insert(n).second);
            break;
          }
        }
      }
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top