Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for quantize (0.16 sec)

  1. staging/src/k8s.io/api/storage/v1beta1/generated.pb.go

    		`StorageClassName:` + fmt.Sprintf("%v", this.StorageClassName) + `,`,
    		`Capacity:` + strings.Replace(fmt.Sprintf("%v", this.Capacity), "Quantity", "resource.Quantity", 1) + `,`,
    		`MaximumVolumeSize:` + strings.Replace(fmt.Sprintf("%v", this.MaximumVolumeSize), "Quantity", "resource.Quantity", 1) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *CSIStorageCapacityList) String() string {
    	if this == nil {
    		return "nil"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 133.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1/generated.pb.go

    		`StorageClassName:` + fmt.Sprintf("%v", this.StorageClassName) + `,`,
    		`Capacity:` + strings.Replace(fmt.Sprintf("%v", this.Capacity), "Quantity", "resource.Quantity", 1) + `,`,
    		`MaximumVolumeSize:` + strings.Replace(fmt.Sprintf("%v", this.MaximumVolumeSize), "Quantity", "resource.Quantity", 1) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *CSIStorageCapacityList) String() string {
    	if this == nil {
    		return "nil"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 133.8K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_generator.go

    	// size here always refers to capacity last recorded in actualStateOfWorld from pvc.Status.Capacity
    	GenerateExpandInUseVolumeFunc(volumeToMount VolumeToMount, actualStateOfWorld ActualStateOfWorldMounterUpdater, currentSize resource.Quantity) (volumetypes.GeneratedOperations, error)
    }
    
    type inTreeResizeOpts struct {
    	resizerName  string
    	pvc          *v1.PersistentVolumeClaim
    	pv           *v1.PersistentVolume
    	volumeSpec   *volume.Spec
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

          return op.emitOpError(llvm::formatv("expect output type {0}, got {1}",
                                              expected_output_type, output_type));
        }
      }
    
      // Verify the quantized axis if the type is UniformQuantizedPerAxisType. Other
      // verifications to make sure the input and output has the same quantization
      // type, scale and zero point are performed by the SameOperandsAndResultsScale
      // trait.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_test.go

    		// to emulate resource Allocation failure.
    		// Resources not contained in this map will have their node.allocatableResource
    		// quantity unchanged.
    		updateResourceMap := map[v1.ResourceName]resource.Quantity{
    			adjustedResource: resourceQuantity2,
    			emptyResource:    resourceQuantity0,
    			failedResource:   resourceQuantityInvalid,
    		}
    		pod := attrs.Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        std::vector<int64_t> zero_points = {qtype.getZeroPoint()};
        q_params = tflite::CreateQuantizationParameters(
            // min and max values are not stored in the quantized type from MLIR, so
            // both are set to 0 in the flatbuffer when they are exported.
            builder_, /*min=*/0, /*max=*/0, builder_.CreateVector<float>(scales),
            builder_.CreateVector<int64_t>(zero_points));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_node_status_test.go

    						hugePageResourceName1Gi:     resource.MustParse("2Gi"),
    					},
    				},
    			},
    		}, {
    			name:        "update needed when huge page resource quantity has changed",
    			testKubelet: testKubelet,
    			needsUpdate: true,
    			initialNode: &v1.Node{
    				Status: v1.NodeStatus{
    					Capacity: v1.ResourceList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

          ConversionPatternRewriter& rewriter) const final {
        SetDefaultConvAttributes(conv_op, rewriter);
        if (!IsSupportedConvOp(conv_op)) {
          return failure();
        }
    
        // tf Convolution doesn't support quantized type.
        if (mlir::isa<quant::QuantizedType>(
                conv_op.getRhs().getType().getElementType())) {
          return failure();
        }
    
        // Constructs strides array.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top