Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for filterMap (0.38 sec)

  1. operator/pkg/object/objects.go

    	}
    }
    
    func ObjectsNotInLists(objects K8sObjects, lists ...K8sObjects) K8sObjects {
    	var ret K8sObjects
    
    	filterMap := make(map[*K8sObject]bool)
    	for _, list := range lists {
    		for _, object := range list {
    			filterMap[object] = true
    		}
    	}
    
    	for _, o := range objects {
    		if !filterMap[o] {
    			ret = append(ret, o)
    		}
    	}
    	return ret
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  2. internal/config/config.go

    			tgtName := strings.TrimPrefix(k, envVarPrefix)
    			if tgtName != "" {
    				if v, ok := filterMap[k]; ok {
    					if strings.HasPrefix(envVarPrefix, v) {
    						filterMap[k] = envVarPrefix
    					}
    				} else {
    					filterMap[k] = envVarPrefix
    				}
    			}
    		}
    	}
    
    	for k, v := range filterMap {
    		seen.Add(strings.TrimPrefix(k, v))
    	}
    
    	seen.Remove(Default)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/MapsCollectionTest.java

        suite.addTest(filterSortedMapSuite());
        suite.addTest(filterNavigableMapSuite());
        return suite;
      }
    
      static TestSuite filterMapSuite() {
        TestSuite suite = new TestSuite("FilterMap");
        suite.addTest(
            MapTestSuiteBuilder.using(
                    new TestStringMapGenerator() {
                      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library.mlir

                             %filter_scale : tensor<*xf32>, %filter_zp : tensor<*xi32>,
                             %out_scale : tensor<*xf32>, %out_zp : tensor<*xi32>) -> tensor<*xi8> {
        %rescale = "tf.PartitionedCall"(%accumulation, %input_scale, %input_zp, %filter_scale, %filter_zp,
                                    %out_scale, %out_zp) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 08 01:16:10 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library_uniform_quantized.mlir

                             %filter_scale : tensor<*xf32>, %filter_zp : tensor<*xi32>, %out_scale : tensor<*xf32>, %out_zp : tensor<*xi32>) -> tensor<*x!tf_type.qint32> {
        %conv_out = "tf.UniformQuantizedConvolution"(%input, %filter,
                                    %input_scale, %input_zp, %filter_scale, %filter_zp, %out_scale, %out_zp) {
            Tin = "tfdtype$DT_QINT8",
            Tout = "tfdtype$DT_QINT32",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 29 01:13:58 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_to_mhlo_int_test.cc

      %filter_scale = "tf.Const"() { value = dense<0.047> : tensor<f32> } : () -> tensor<f32>
      %filter_zp = "tf.Const"() { value = dense<0> : tensor<i32> } : () -> tensor<i32>
      %quant_filter = "tf.Cast"(%filter) {} : (tensor<3x3x10x20xi8>) ->
        tensor<3x3x10x20x!tf_type.qint8>
      %filter_new = "tf.UniformDequantize"(%quant_filter, %filter_scale, %filter_zp) {
        quantization_axis = -1 : i64, quantization_min_val = -128 : i64,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 03 01:03:21 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library_tf_drq.mlir

                             %input : tensor<*xi8>, %filter : tensor<*xi8>,
                             %input_scale : tensor<*xf32>, %input_zp : tensor<*xi32>,
                             %filter_scale : tensor<*xf32>, %filter_zp : tensor<*xi32>) -> tensor<*xi32> {
        %0 = "tf.Cast"(%input) {Truncate = false} : (tensor<*xi8>) -> tensor<*xi32>
        %1 = "tf.Sub"(%0, %input_zp) : (tensor<*xi32>, tensor<*xi32>) -> tensor<*xi32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 15:43:38 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

                params.getExpressedType(), new_bias_scale, 0,
                params.getStorageTypeMin(), params.getStorageTypeMax()));
        arith::ConstantOp filter_op = DuplicateConstantOpIfNeeded(
            op->getOperand(filter_index).getDefiningOp<arith::ConstantOp>(), op,
            filter_index);
        if (!filter_op) {
          return SetOperandParams(op, bias_index, params);
        }
    
        const auto filter_quantized_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
Back to top