Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for partitioned (0.33 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    def TPUResourceReadsWritesPartitioningPass : Pass<"tf-tpu-resource-partition", "mlir::func::FuncOp"> {
      let summary = "Partitions unpartitioned resource read/write to partitioned resource variables.";
    
      let description = [{
        This pass creates individual resource reads/writes from the unpartitioned
        resource variable (from `tf.TPUPartitionedInput`) to individual partitioned
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

      local format="${4}"
    
    
      if [[ -z "${devicenum}" ]]; then
        echo "Failed to get the local disk number for device ${ssd}" >&2
        exit 2
      fi
    
      # TODO: Handle partitioned disks. Right now this code just ignores partitions
      if [[ "${format}" == "fs" ]]; then
        if [[ "${interface}" == "scsi" ]]; then
          local actual_device
          actual_device=$(readlink -f "${ssd}" | cut -d '/' -f 3)
          # Error checking
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    			anonymizeAddr(&localPartitions)
    			healthInfo.Sys.Partitions = append(healthInfo.Sys.Partitions, localPartitions)
    
    			peerPartitions := globalNotificationSys.GetPartitions(healthCtx)
    			for _, p := range peerPartitions {
    				anonymizeAddr(&p)
    				healthInfo.Sys.Partitions = append(healthInfo.Sys.Partitions, p)
    			}
    			partialWrite(healthInfo)
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
Back to top