Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for WithAssignedDevice (0.24 sec)

  1. tensorflow/cc/framework/scope.h

      Scope WithDevice(const string& device) const;
    
      /// Returns a new scope.  All ops created within the returned scope will have
      /// their assigned device set to `assigned_device`.
      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`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/scope.cc

                            /* clear_control_deps */ true));
    }
    
    Scope Scope::WithDevice(const string& device) const {
      return Scope(new Impl(*this, Impl::Tags::Device(), device));
    }
    
    Scope Scope::WithAssignedDevice(const string& assigned_device) const {
      return Scope(new Impl(*this, Impl::Tags::AssignedDevice(), assigned_device));
    }
    
    Scope Scope::WithXlaCluster(const string& xla_cluster) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top