Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for esize (0.07 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      vals.resize(size);
      std::iota(vals.begin(), vals.end(), start);
    
      TensorType ty =
          tensorflow::GetTypeFromTFTensorShape({size}, builder->getIntegerType(64));
      return DenseIntElementsAttr::get(ty, vals);
    }
    
    // Returns a 1-d i64 elements attribute populated with `val` repeated `size`
    // times.
    static DenseIntElementsAttr GetI64ElementsAttrForValue(int size, int64_t val,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers.go

    	}
    
    	modesStr := helper.GetAccessModesAsString(obj.Spec.AccessModes)
    	reclaimPolicyStr := string(obj.Spec.PersistentVolumeReclaimPolicy)
    
    	aQty := obj.Spec.Capacity[api.ResourceStorage]
    	aSize := aQty.String()
    
    	phase := obj.Status.Phase
    	if obj.ObjectMeta.DeletionTimestamp != nil {
    		phase = "Terminating"
    	}
    	volumeMode := "<unset>"
    	if obj.Spec.VolumeMode != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    With inconsistent num_segments, the op still runs. only difference is,
    the output takes the size of num_segments irrespective of size of segment_ids and data.
    for num_segments less than expected output size, the last elements are ignored
    for num_segments more than the expected output size, last elements are assigned 
    smallest possible value for the specific numeric type.
    
    For example:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top