Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 155 for r2devices (0.14 sec)

  1. README.md

    To install the current release, which includes support for
    [CUDA-enabled GPU cards](https://www.tensorflow.org/install/gpu) *(Ubuntu and
    Windows)*:
    
    ```
    $ pip install tensorflow
    ```
    
    Other devices (DirectX and MacOS-metal) are supported using
    [Device plugins](https://www.tensorflow.org/install/gpu_plugins#available_devices).
    
    A smaller CPU-only package is also available:
    
    ```
    $ pip install tensorflow-cpu
    ```
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 15:00:10 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

      let summary = "Lifting resource operations out of device computation";
      let description = [{
        This pass lifts resource variable operations outside of device computation.
        This is useful because a lot of accelerator devices can not interact with
        resource variables directly..
    
        Here is a simple example in TensorFlow where a device doubles the value of a
        TensorFlow resource variable and returns new value:
    
        ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/README.md

    The final graph looks like below:
    
    ![Final graph](g3doc/images/final_graph.png)
    
    ## TAC components
    
    ### Hardwares
    
    Hardwares are used to modeling target device capabilities & also ops cost for
    the target devices.
    
    We have already modeled `cpu_hardware` & `gpu_hardware` as well as the
    `nnapi_hardware`.
    
    ### Passes
    
    #### Target Annotation Pass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/scope.h

      /// co-located on the device where op is placed.
      /// NOTE: This function is intended to be use internal libraries only for
      /// controlling placement of ops on to devices. Public use is not encouraged
      /// because the implementation of device placement is subject to change.
      Scope ColocateWith(const Operation& op) const;
      /// Convenience function for above.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/reconciler/reconstruct_test.go

    			rcInstance.populatorHasAddedPods = func() bool {
    				// Mark DSW populated to allow unmounting of volumes.
    				return true
    			}
    			// Mark devices paths as reconciled to allow unmounting of volumes.
    			rcInstance.volumesNeedUpdateFromNodeStatus = nil
    
    			// Act 2 - reconcile once
    			rcInstance.reconcile()
    
    			// Assert 2
    			// MountDevice was attempted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/dra/state/state_checkpoint_test.go

    						},
    					},
    					CDIDevices: map[string][]string{
    						"test-driver.cdi.k8s.io": {"example.com/example=cdi-example"},
    					},
    				},
    			},
    		},
    		{
    			"Restore checkpoint - single claim - multiple devices",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/tensorflow/fallback_to_flex_ops.cc

      }
    
      void getDependentDialects(DialectRegistry &registry) const override {
        registry.insert<TFL::TensorFlowLiteDialect>();
      }
    
     private:
      // The mode of TF Quantization, might indicate different users/devices.
      Option<std::string> mode_{*this, "mode",
                                llvm::cl::desc("The mode of TF Quantization."),
                                llvm::cl::init("")};
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. pkg/volume/volume.go

    type Metrics struct {
    	// The time at which these stats were updated.
    	Time metav1.Time
    
    	// Used represents the total bytes used by the Volume.
    	// Note: For block devices this maybe more than the total size of the files.
    	Used *resource.Quantity
    
    	// Capacity represents the total capacity (bytes) of the volume's
    	// underlying storage. For Volumes that share a filesystem with the host
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

                                     PatternRewriter &rewriter) const {
        return true;
      }
    
      // Class users should override this method if there are any op-specific
      // compatibility requirements for devices.
      virtual bool IsDeviceCompatible(SrcOpT contraction_op, BiasAddOp bias_add,
                                      PatternRewriter &rewriter) const {
        return true;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/partially_decluster_pass.cc

            if (n->IsConstant()) {
              // We must decluster Const nodes that have an input control edge from
              // a different device, because this node may be part of the
              // co-ordination of while loops between devices.
              for (auto it : n->in_edges()) {
                if (!it->src()->assigned_device_name().empty() &&
                    it->src()->assigned_device_name() !=
                        n->assigned_device_name()) {
    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